Island: Undo accidental change to cc/repository/zero_trust/IEventRepository.py

This commit is contained in:
Shreya Malviya 2022-09-16 19:15:21 +05:30
parent 4e1ca659a9
commit 2146985e51
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ from typing import Optional, Sequence
from monkey_island.cc.models.zero_trust.event import Event
class IAgentEventRepository(ABC):
class IEventRepository(ABC):
def get_events(self, finding_id: Optional[str] = None) -> Sequence[Event]:
pass