Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoletta Addimando committed Sep 13, 2024
1 parent 987493e commit fd43fe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meteoblue_dataset_sdk/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ async def _run_on_job_queue(self, session: aiohttp.ClientSession, params: dict):
if status == "error":
raise ApiError(json_data["error_message"])
logging.info(
f"Waiting {self._config.queue_retry_sleep_duration} seconds for job to complete. Status: {status}, \
job id {job_id}"
f"Waiting {self._config.queue_retry_sleep_duration} seconds for "
f"job to complete. Status: {status}, job id {job_id}"
)
await asyncio.sleep(self._config.queue_retry_sleep_duration)

Expand Down

0 comments on commit fd43fe4

Please sign in to comment.