Trailing comma for the pre-commit hook
parent
e22c37a16b
commit
22c0d5806c
|
@ -431,7 +431,7 @@ class _Observable(_STIXBase):
|
||||||
uuid_ = uuid.uuid5(SCO_DET_ID_NAMESPACE, data)
|
uuid_ = uuid.uuid5(SCO_DET_ID_NAMESPACE, data)
|
||||||
else:
|
else:
|
||||||
uuid_ = uuid.uuid5(
|
uuid_ = uuid.uuid5(
|
||||||
SCO_DET_ID_NAMESPACE, data.encode("utf-8")
|
SCO_DET_ID_NAMESPACE, data.encode("utf-8"),
|
||||||
)
|
)
|
||||||
|
|
||||||
id_ = "{}--{}".format(self._type, six.text_type(uuid_))
|
id_ = "{}--{}".format(self._type, six.text_type(uuid_))
|
||||||
|
|
Loading…
Reference in New Issue