chore(backend): standardize multiline formatting across modules

Reformatted multiline function calls, object definitions, and queries for improved code readability and consistency. Adjusted imports and constraints where necessary.
This commit is contained in:
2026-01-03 01:35:18 +01:00
parent da5affd613
commit acd18ff694
26 changed files with 540 additions and 357 deletions

View File

@@ -72,9 +72,7 @@ def execute_workflow_step(
Returns:
dict with status, workflow_id, and transition
"""
logger.info(
f"Executing transition '{transition}' for workflow {workflow_id}"
)
logger.info(f"Executing transition '{transition}' for workflow {workflow_id}")
# TODO: Implement workflow transition
# This will involve:
@@ -196,9 +194,7 @@ def start_story_workflow(
Returns:
dict with status and story_id
"""
logger.info(
f"Starting story workflow for story {story_id} in project {project_id}"
)
logger.info(f"Starting story workflow for story {story_id} in project {project_id}")
# TODO: Implement story workflow initialization
# This will involve: