forked from p34709852/monkey
Agent: Fix type hint in IIslandAPIClient.send_log()
This commit is contained in:
parent
8dc8a516d5
commit
21f01292f7
|
@ -5,7 +5,7 @@ from common import AgentRegistrationData, AgentSignals, OperatingSystem
|
|||
from common.agent_configuration import AgentConfiguration
|
||||
from common.agent_events import AbstractAgentEvent
|
||||
from common.credentials import Credentials
|
||||
from common.types import SocketAddress
|
||||
from common.types import AgentID, SocketAddress
|
||||
|
||||
|
||||
class IIslandAPIClient(ABC):
|
||||
|
@ -30,7 +30,7 @@ class IIslandAPIClient(ABC):
|
|||
"""
|
||||
|
||||
@abstractmethod
|
||||
def send_log(self, agent_id: int, log_contents: str):
|
||||
def send_log(self, agent_id: AgentID, log_contents: str):
|
||||
"""
|
||||
Send the contents of the agent's log to the island
|
||||
|
||||
|
|
Loading…
Reference in New Issue