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

@@ -91,9 +91,7 @@ def spawn_agent(
Returns:
dict with status, agent_type_id, and project_id
"""
logger.info(
f"Spawning agent of type {agent_type_id} for project {project_id}"
)
logger.info(f"Spawning agent of type {agent_type_id} for project {project_id}")
# TODO: Implement agent spawning
# This will involve:
@@ -132,9 +130,7 @@ def terminate_agent(
Returns:
dict with status and agent_instance_id
"""
logger.info(
f"Terminating agent instance {agent_instance_id} with reason: {reason}"
)
logger.info(f"Terminating agent instance {agent_instance_id} with reason: {reason}")
# TODO: Implement agent termination
# This will involve: