Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavberi committed Jul 11, 2024
1 parent 2c61972 commit 44f9338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ def downloadEventsData(
elif field == "budget":
if isinstance(value, list):
budget_items = [
f"{item['description']} {'(Advance)' if item['advance'] else ''}: {item['amount']}"
f"{item['description']} {'(Advance)' if item['advance'] else ''}: {item['amount']}" # noqa: E501
for item in value
]
value = ", ".join(budget_items)
Expand Down

0 comments on commit 44f9338

Please sign in to comment.