chore: ran linter and formatter

This commit is contained in:
2025-12-27 19:41:22 +01:00
parent 6195abbaa5
commit 3880a4ec49
5 changed files with 21 additions and 21 deletions

View File

@@ -226,13 +226,13 @@ class TestJsonTVShowRepository:
[ShowStatus.ONGOING, ShowStatus.ENDED, ShowStatus.UNKNOWN]
):
show = TVShow(
imdb_id=ImdbId(f"tt{i+1000000:07d}"),
imdb_id=ImdbId(f"tt{i + 1000000:07d}"),
title=f"Show {status.value}",
seasons_count=1,
status=status,
)
repo.save(show)
loaded = repo.find_by_imdb_id(ImdbId(f"tt{i+1000000:07d}"))
loaded = repo.find_by_imdb_id(ImdbId(f"tt{i + 1000000:07d}"))
assert loaded.status == status