Skip to content

Commit

Permalink
black lint formatted four files
Browse files Browse the repository at this point in the history
  • Loading branch information
roshan00017 committed Apr 4, 2024
1 parent 012fa5a commit 297e021
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ async def remove_agent(self, agent_id: str) -> bool:
await self.db.prisma.agstringent.update(
where={"id": agent_id}, data={"deleted_at": datetime.now(timezone.utc)}
)
return True
return True
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ async def test_list_agents_with_two_agents(agent_service, agent_router):
agent_service.list_agents.assert_called_once()

# Assert that the returned agents match the mock_agents
assert agents == mock_agents
assert agents == mock_agents
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ async def test_list_agents_with_two_agents(agent_service, agent_router):
agent_service.list_agents.assert_called_once()

# Assert that the returned agents match the mock_agents
assert agents == mock_agents
assert agents == mock_agents
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ async def test_update_agent_should_fail_with_invalid_details(self, agent_service

agent_service.update_agent.assert_called_once_with(agent_id, agent_data)

assert result == updated_agent
assert result == updated_agent

0 comments on commit 297e021

Please sign in to comment.