Small CR changes
This commit is contained in:
parent
877b08fa6b
commit
005278cda0
|
@ -1,4 +1,5 @@
|
||||||
import abc
|
import abc
|
||||||
|
from typing import List
|
||||||
|
|
||||||
from common.utils.attack_utils import ScanStatus
|
from common.utils.attack_utils import ScanStatus
|
||||||
from monkey_island.cc.database import mongo
|
from monkey_island.cc.database import mongo
|
||||||
|
@ -11,9 +12,9 @@ class PostBreachTechnique(AttackTechnique, metaclass=abc.ABCMeta):
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@abc.abstractmethod
|
@abc.abstractmethod
|
||||||
def pba_names(self):
|
def pba_names(self) -> List[str]:
|
||||||
"""
|
"""
|
||||||
:return: name of post breach action
|
:return: names of post breach action
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue