Agent: Fix typo in IIslandAPIClient

This commit is contained in:
Kekoa Kaaikala 2022-09-20 18:34:04 +00:00
parent 2a1396c82d
commit 53dc34f895
1 changed files with 3 additions and 5 deletions

View File

@ -1,11 +1,9 @@
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
from typing import Optional, Sequence from typing import Optional, Sequence
from common import OperatingSystem from common import AgentRegistrationData, OperatingSystem
from common.agent_events import AbstractAgentEvent
from common import AgentRegistrationData
from common.agent_configuration import AgentConfiguration from common.agent_configuration import AgentConfiguration
from common.agent_events import AbstractAgentEvent
from common.credentials import Credentials from common.credentials import Credentials
@ -17,7 +15,7 @@ class IIslandAPIClient(ABC):
@abstractmethod @abstractmethod
def connect(self, island_server: str): def connect(self, island_server: str):
""" """
Connectto the island's API Connect to the island's API
:param island_server: The socket address of the API :param island_server: The socket address of the API
:raises IslandAPIConnectionError: If the client cannot successfully connect to the island :raises IslandAPIConnectionError: If the client cannot successfully connect to the island