Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cbiering committed Dec 20, 2024
1 parent 4a186d0 commit 390e914
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions nova/core/nova.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ def __init__(self, api_gateway: ApiGateway, cell_id: str):
self._cell_id = cell_id

async def _get_controllers(self) -> list[wb.models.ControllerInstance]:
controller_api = self._api_gateway.controller_api
response = await controller_api.list_controllers(cell=self._cell_id)
response = await self._api_gateway.controller_api.list_controllers(cell=self._cell_id)
return response.instances

async def controllers(self) -> list["Controller"]:
Expand Down

0 comments on commit 390e914

Please sign in to comment.