We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae5096f commit 902c765Copy full SHA for 902c765
mapswipe_workers/mapswipe_workers/mapswipe_workers.py
@@ -104,7 +104,8 @@ def run_firebase_to_postgres() -> list:
104
update_data.update_user_data()
105
update_data.update_project_data()
106
project_ids = transfer_results.transfer_results()
107
- [send_progress_notification(project_id) for project_id in project_ids]
+ for project_id in project_ids:
108
+ send_progress_notification(project_id)
109
return project_ids
110
111
0 commit comments