Fix style issues
parent
0ca2bc087a
commit
69d2529f0e
|
@ -39,7 +39,7 @@ def _validate_selector(obj, selector):
|
||||||
|
|
||||||
|
|
||||||
def _get_marking_id(marking):
|
def _get_marking_id(marking):
|
||||||
if type(marking).__name__ is 'MarkingDefinition': # avoid circular import
|
if type(marking).__name__ == 'MarkingDefinition': # avoid circular import
|
||||||
return marking.id
|
return marking.id
|
||||||
return marking
|
return marking
|
||||||
|
|
||||||
|
|
|
@ -143,7 +143,7 @@ class ListProperty(Property):
|
||||||
|
|
||||||
if type(self.contained) is EmbeddedObjectProperty:
|
if type(self.contained) is EmbeddedObjectProperty:
|
||||||
obj_type = self.contained.type
|
obj_type = self.contained.type
|
||||||
elif type(self.contained).__name__ is "STIXObjectProperty":
|
elif type(self.contained).__name__ == "STIXObjectProperty":
|
||||||
# ^ this way of checking doesn't require a circular import
|
# ^ this way of checking doesn't require a circular import
|
||||||
# valid is already an instance of a python-stix2 class; no need
|
# valid is already an instance of a python-stix2 class; no need
|
||||||
# to turn it into a dictionary and then pass it to the class
|
# to turn it into a dictionary and then pass it to the class
|
||||||
|
|
Loading…
Reference in New Issue