Skip to content

Commit

Permalink
Concatenate f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
Henrik Koski committed Jul 24, 2024
1 parent b849045 commit ee3bc45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spinetoolbox/server/engine_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def _check_connectivity(self, timeout):
response_id = int(response.getId()) # Check that request ID matches the response ID
if not response_id == random_id:
raise RemoteEngineInitFailed(
f"Ping failed. Request Id '{random_id}' does not " f"match reply Id '{response_id}'"
f"Ping failed. Request Id '{random_id}' does not match reply Id '{response_id}'"
)

def set_start_time(self):
Expand Down

0 comments on commit ee3bc45

Please sign in to comment.