fix: Avoiding our additional parameter to be in the parsed STIX objects
parent
067d76bb90
commit
86536b43b1
|
|
@ -124,9 +124,10 @@ class _STIXBase(collections.Mapping):
|
||||||
for m in self.get("granular_markings", []):
|
for m in self.get("granular_markings", []):
|
||||||
validate(self, m.get("selectors"))
|
validate(self, m.get("selectors"))
|
||||||
|
|
||||||
def __init__(self, allow_custom=False, **kwargs):
|
def __init__(self, allow_custom=False, interoperability=False, **kwargs):
|
||||||
cls = self.__class__
|
cls = self.__class__
|
||||||
self.__allow_custom = allow_custom
|
self.__allow_custom = allow_custom
|
||||||
|
self.__interoperability = interoperability
|
||||||
|
|
||||||
# Use the same timestamp for any auto-generated datetimes
|
# Use the same timestamp for any auto-generated datetimes
|
||||||
self.__now = get_timestamp()
|
self.__now = get_timestamp()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue