Skip to content

Commit

Permalink
remove async in iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
dspeck1 committed Oct 1, 2024
1 parent 5ce9f2e commit 3557c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ async def main() -> None:

#for fan_out_message in fan_out_message_list:

async for fan_out_message in fan_out_message_list:
for fan_out_message in fan_out_message_list:

task = asyncio.create_task(

Expand Down

0 comments on commit 3557c03

Please sign in to comment.