Skip to content

Commit

Permalink
Black linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jessemortenson committed Oct 2, 2024
1 parent 4343677 commit 09f6913
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,9 @@ def batch_retrieval_from_sqs(batch_size=600):
msg.extend(retrieve_messages_from_queue())
filtered_messages = remove_duplicate_message(msg)

logger.info(f"message_count: {len(filtered_messages)} received and deleted from SQS")
logger.info(
f"message_count: {len(filtered_messages)} received and deleted from SQS"
)
return filtered_messages


Expand Down

0 comments on commit 09f6913

Please sign in to comment.