forked from p15670423/monkey
Common: Remove default from PingScanEvent
This commit is contained in:
parent
a44f763fab
commit
acf877f3d8
|
@ -1,5 +1,3 @@
|
||||||
from pydantic import Field
|
|
||||||
|
|
||||||
from common.types import PingScanData
|
from common.types import PingScanData
|
||||||
|
|
||||||
from . import AbstractAgentEvent
|
from . import AbstractAgentEvent
|
||||||
|
@ -13,4 +11,4 @@ class PingScanEvent(AbstractAgentEvent):
|
||||||
:param scan_data: The data collected from the ping scan
|
:param scan_data: The data collected from the ping scan
|
||||||
"""
|
"""
|
||||||
|
|
||||||
scan_data: PingScanData = Field(default=None)
|
scan_data: PingScanData
|
||||||
|
|
Loading…
Reference in New Issue