Skip to content

Commit dc04c1b

Browse files
Fix pylint issues
1 parent 98c29b3 commit dc04c1b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/backend/v4/magentic_agents/common/lifecycle.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,10 @@ def get_chat_client(self, chat_client) -> AzureAIAgentClient:
153153

154154
async def resolve_agent_id(self, agent_id: str) -> Optional[str]:
155155
"""Resolve agent ID via Projects SDK first (for RAI agents), fallback to AgentsClient.
156-
156+
157157
Args:
158158
agent_id: The agent ID to resolve
159-
159+
160160
Returns:
161161
The resolved agent ID if found, None otherwise
162162
"""
@@ -284,7 +284,7 @@ async def save_database_team_agent(self) -> None:
284284
"RAI reuse: id unchanged (id=%s); skip save.", self._agent.id
285285
)
286286
return
287-
287+
288288
currentAgent = CurrentTeamAgent(
289289
team_id=self.team_config.team_id,
290290
team_name=self.team_config.name,

src/backend/v4/magentic_agents/foundry_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(
4343
) -> None:
4444
# Get project_client before calling super().__init__
4545
project_client = config.get_ai_project_client()
46-
46+
4747
super().__init__(
4848
mcp=mcp_config,
4949
model_deployment_name=model_deployment_name,

0 commit comments

Comments
 (0)