Skip to content

Commit

Permalink
fix illegal synthax
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick borowy committed Mar 20, 2024
1 parent a1e9531 commit 2f49394
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,7 @@ def datetime_serializer(obj):
raise TypeError("Type not serializable")

new_configuration['Env'].append(
f"LAST_PULL_TIMES={
json.dumps(last_pull_times, default=datetime_serializer)
}"
f"LAST_PULL_TIMES={json.dumps(last_pull_times, default=datetime_serializer)}"
)
new_configuration['Env'].append(
f"CLOSE_CONTAINER_ID={existing_container.id}"
Expand Down

0 comments on commit 2f49394

Please sign in to comment.