forked from p15670423/monkey
Island: Fix mypy issues in i_log_repository.py
This commit is contained in:
parent
3e95ec6ee4
commit
ecd2cbbe6e
|
@ -2,8 +2,12 @@ from abc import ABC
|
||||||
from typing import Optional, Sequence
|
from typing import Optional, Sequence
|
||||||
|
|
||||||
|
|
||||||
|
# TODO: Actually define the Log class
|
||||||
|
class Log:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class ILogRepository(ABC):
|
class ILogRepository(ABC):
|
||||||
# Define log object
|
|
||||||
def get_logs(self, agent_id: Optional[str] = None) -> Sequence[Log]: # noqa: F821
|
def get_logs(self, agent_id: Optional[str] = None) -> Sequence[Log]: # noqa: F821
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue