Skip to content

Commit

Permalink
fix f-string error on some Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
bitonio committed May 14, 2024
1 parent 0f46fc0 commit c58e156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libeaa/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def create(self, config):
cli.exit(2)

connector_info = response.json()
connector_moniker = EAAItem(f"con://{connector_info.get("uuid_url")}")
connector_moniker = EAAItem(f'con://{connector_info.get("uuid_url")}')
start = time.time()
wait_until = start + config.connector_dl_wait
wait_interval = 1 # Start interval in seconds
Expand Down

0 comments on commit c58e156

Please sign in to comment.