Skip to content

Commit

Permalink
Fix ruff (#20460)
Browse files Browse the repository at this point in the history
Fixing a formatting mistake.
Co-authored-by: Quinlan <[email protected]>
  • Loading branch information
sbquinlan authored Mar 13, 2024
1 parent f017a0a commit d803f30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python_modules/dagster/dagster/_daemon/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,9 @@ def check_workspace_freshness(self, last_workspace_update_time: float) -> float:
self._logger.exception("Daemon controller surpassed workspace freshness tolerance.")
raise
else:
self._logger.exception("Daemon controller failed to refresh workspace. Still within freshness tolerance.")
self._logger.exception(
"Daemon controller failed to refresh workspace. Still within freshness tolerance."
)
return last_workspace_update_time

def check_daemon_loop(self) -> None:
Expand Down

0 comments on commit d803f30

Please sign in to comment.