From 88bb856859ba99c23dca0a6b2c0fd4f9ac4edb95 Mon Sep 17 00:00:00 2001 From: Ilija Lazoroski Date: Tue, 16 Aug 2022 09:22:13 +0200 Subject: [PATCH] Common: Reorder params in docstring AbstractEvent --- monkey/common/events/abstract_event.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/monkey/common/events/abstract_event.py b/monkey/common/events/abstract_event.py index 03629c442..ef2735517 100644 --- a/monkey/common/events/abstract_event.py +++ b/monkey/common/events/abstract_event.py @@ -16,10 +16,10 @@ class AbstractEvent(ABC): about the event. Attributes: - :param source: The UUID of the agent that observed the event - :param target: The target of the event (if not the local system) - :param timestamp: The time that the event occurred (seconds since the Unix epoch) :param tags: The set of tags associated with the event + :param target: The target of the event (if not the local system) + :param source: The UUID of the agent that observed the event + :param timestamp: The time that the event occurred (seconds since the Unix epoch) """ tags: FrozenSet[str]