From 8d92a77c922f70b8d3a71ea928b491c99baefcfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Wed, 20 Nov 2019 10:52:27 +0100 Subject: [PATCH] fix: Do not unitialize the uuid in MISPEvent --- pymisp/mispevent.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pymisp/mispevent.py b/pymisp/mispevent.py index c09294b..d9feba2 100644 --- a/pymisp/mispevent.py +++ b/pymisp/mispevent.py @@ -458,7 +458,6 @@ class MISPEvent(AbstractMISP): # This variable is used in add_attribute in order to avoid duplicating the structure self.describe_types = describe_types - self.uuid = str(uuid.uuid4()) self.Attribute = [] self.Object = [] self.RelatedEvent = []