Skip to content

Commit

Permalink
make lint
Browse files Browse the repository at this point in the history
  • Loading branch information
booxter committed Dec 5, 2024
1 parent d1400f7 commit 250541c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/letsrolld/cmd/cleanup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ def delete_orphaned_directors(session, model, dry_run=False):
try:
for director in session.query(model).all():
if not director.films:
print(f"Deleting orphaned director: {director.name} @ {director.lb_url}")
print(
f"Deleting orphaned director: {director.name} @ {director.lb_url}"
)
session.delete(director)
finally:
if not dry_run:
Expand Down

0 comments on commit 250541c

Please sign in to comment.