ruff: enable and fix C4 ruleset

This commit is contained in:
Dima Gerasimov 2024-08-27 22:50:37 +01:00 committed by karlicoss
parent c08ddbc781
commit d244c7cc4e
19 changed files with 48 additions and 38 deletions

View file

@ -33,7 +33,7 @@ def iter_movies() -> Iterator[Movie]:
def get_movies() -> List[Movie]:
return list(sorted(iter_movies(), key=lambda m: m.created))
return sorted(iter_movies(), key=lambda m: m.created)
def test():