Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
honzajavorek committed Apr 14, 2024
1 parent a554154 commit 0327002
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion film2trello/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ async def process_inbox(

if sort_cards:
logger.info("Sorting cards")
for position, (card, _) in enumerate(sorted(index, key=sort_inbox_key), start=1):
for position, (card, _) in enumerate(
sorted(index, key=sort_inbox_key), start=1
):
logger.info(f"#{position}: {card['name']}")
await trello.update_card_position(trello_api, card["id"], position)
else:
Expand Down

0 comments on commit 0327002

Please sign in to comment.