style: apply ruff auto-fixes

This commit is contained in:
2026-01-19 03:14:30 -08:00
parent 3ab122a55d
commit a961ac3ce7
72 changed files with 2477 additions and 2871 deletions

View File

@@ -238,7 +238,7 @@ class WorkersModal(ModalScreen):
"---",
"No workers running"
)
logger.debug(f"[workers-modal] No running workers to display")
logger.debug("[workers-modal] No running workers to display")
return
logger.debug(
@@ -319,7 +319,7 @@ class WorkersModal(ModalScreen):
"---",
"No finished workers"
)
logger.debug(f"[workers-modal] No finished workers to display")
logger.debug("[workers-modal] No finished workers to display")
return
logger.info(
@@ -399,7 +399,7 @@ class WorkersModal(ModalScreen):
workers_list = None
if event.control == self.running_table:
workers_list = self.running_workers
logger.debug(f"[workers-modal] Highlighted in running table")
logger.debug("[workers-modal] Highlighted in running table")
elif event.control == self.finished_table:
workers_list = self.finished_workers
logger.debug(
@@ -442,7 +442,7 @@ class WorkersModal(ModalScreen):
workers_list = None
if event.data_table == self.running_table:
workers_list = self.running_workers
logger.debug(f"[workers-modal] Cell highlighted in running table")
logger.debug("[workers-modal] Cell highlighted in running table")
elif event.data_table == self.finished_table:
workers_list = self.finished_workers
logger.debug(
@@ -502,7 +502,7 @@ class WorkersModal(ModalScreen):
self.stdout_display.cursor_location = (len(combined_text) - 1, 0)
except Exception:
pass
logger.info(f"[workers-modal] Updated stdout display successfully")
logger.info("[workers-modal] Updated stdout display successfully")
except Exception as e:
logger.error(
f"[workers-modal] Error updating stdout display: {e}",