Fix silly isort check errors..
parent
3101584b3d
commit
486c588306
|
@ -24,6 +24,12 @@
|
||||||
v21.observables
|
v21.observables
|
||||||
v21.sdo
|
v21.sdo
|
||||||
v21.sro
|
v21.sro
|
||||||
|
|
||||||
|
The .v21 import can't be relocated, or we get circular import problems.
|
||||||
|
The 'isort:skip' line comment didn't work to skip only that one problematic
|
||||||
|
import. The only thing that did was telling it to skip the whole file.
|
||||||
|
|
||||||
|
isort:skip_file
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# flake8: noqa
|
# flake8: noqa
|
||||||
|
|
|
@ -6,8 +6,8 @@ Python STIX 2.0 FileSystem Source/Sink
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from stix2.core import parse
|
|
||||||
from stix2 import Bundle
|
from stix2 import Bundle
|
||||||
|
from stix2.core import parse
|
||||||
from stix2.datastore import DataSink, DataSource, DataStoreMixin
|
from stix2.datastore import DataSink, DataSource, DataStoreMixin
|
||||||
from stix2.datastore.filters import Filter, FilterSet, apply_common_filters
|
from stix2.datastore.filters import Filter, FilterSet, apply_common_filters
|
||||||
from stix2.utils import deduplicate, get_class_hierarchy_names
|
from stix2.utils import deduplicate, get_class_hierarchy_names
|
||||||
|
|
|
@ -15,9 +15,9 @@ Note:
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
from stix2 import Bundle
|
||||||
from stix2.base import _STIXBase
|
from stix2.base import _STIXBase
|
||||||
from stix2.core import parse
|
from stix2.core import parse
|
||||||
from stix2 import Bundle
|
|
||||||
from stix2.datastore import DataSink, DataSource, DataStoreMixin
|
from stix2.datastore import DataSink, DataSource, DataStoreMixin
|
||||||
from stix2.datastore.filters import Filter, FilterSet, apply_common_filters
|
from stix2.datastore.filters import Filter, FilterSet, apply_common_filters
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,9 @@ Python STIX 2.x TAXIICollectionStore
|
||||||
"""
|
"""
|
||||||
from requests.exceptions import HTTPError
|
from requests.exceptions import HTTPError
|
||||||
|
|
||||||
|
from stix2 import Bundle
|
||||||
from stix2.base import _STIXBase
|
from stix2.base import _STIXBase
|
||||||
from stix2.core import parse
|
from stix2.core import parse
|
||||||
from stix2 import Bundle
|
|
||||||
from stix2.datastore import (DataSink, DataSource, DataSourceError,
|
from stix2.datastore import (DataSink, DataSource, DataSourceError,
|
||||||
DataStoreMixin)
|
DataStoreMixin)
|
||||||
from stix2.datastore.filters import Filter, FilterSet, apply_common_filters
|
from stix2.datastore.filters import Filter, FilterSet, apply_common_filters
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import os
|
import os
|
||||||
|
|
||||||
import stix2
|
import stix2
|
||||||
|
from stix2 import Bundle
|
||||||
from stix2.workbench import (AttackPattern, Campaign, CourseOfAction,
|
from stix2.workbench import (AttackPattern, Campaign, CourseOfAction,
|
||||||
ExternalReference, FileSystemSource, Filter,
|
ExternalReference, FileSystemSource, Filter,
|
||||||
Identity, Indicator, IntrusionSet, Malware,
|
Identity, Indicator, IntrusionSet, Malware,
|
||||||
|
@ -14,7 +15,6 @@ from stix2.workbench import (AttackPattern, Campaign, CourseOfAction,
|
||||||
set_default_creator, set_default_external_refs,
|
set_default_creator, set_default_external_refs,
|
||||||
set_default_object_marking_refs, threat_actors,
|
set_default_object_marking_refs, threat_actors,
|
||||||
tools, vulnerabilities)
|
tools, vulnerabilities)
|
||||||
from stix2 import Bundle
|
|
||||||
|
|
||||||
from .constants import (ATTACK_PATTERN_ID, ATTACK_PATTERN_KWARGS, CAMPAIGN_ID,
|
from .constants import (ATTACK_PATTERN_ID, ATTACK_PATTERN_KWARGS, CAMPAIGN_ID,
|
||||||
CAMPAIGN_KWARGS, COURSE_OF_ACTION_ID,
|
CAMPAIGN_KWARGS, COURSE_OF_ACTION_ID,
|
||||||
|
|
|
@ -2,9 +2,9 @@ from collections import OrderedDict
|
||||||
|
|
||||||
from stix2 import parse
|
from stix2 import parse
|
||||||
from stix2.base import _STIXBase
|
from stix2.base import _STIXBase
|
||||||
from stix2.properties import TypeProperty, IDProperty, StringProperty, \
|
from stix2.properties import (IDProperty, ListProperty, Property,
|
||||||
ListProperty, Property
|
StringProperty, TypeProperty)
|
||||||
from stix2.utils import get_class_hierarchy_names, _get_dict
|
from stix2.utils import _get_dict, get_class_hierarchy_names
|
||||||
|
|
||||||
|
|
||||||
class STIXObjectProperty(Property):
|
class STIXObjectProperty(Property):
|
||||||
|
|
|
@ -2,8 +2,8 @@ from collections import OrderedDict
|
||||||
|
|
||||||
from stix2 import parse
|
from stix2 import parse
|
||||||
from stix2.base import _STIXBase
|
from stix2.base import _STIXBase
|
||||||
from stix2.properties import TypeProperty, IDProperty, ListProperty, Property
|
from stix2.properties import IDProperty, ListProperty, Property, TypeProperty
|
||||||
from stix2.utils import get_class_hierarchy_names, _get_dict
|
from stix2.utils import _get_dict, get_class_hierarchy_names
|
||||||
|
|
||||||
|
|
||||||
class STIXObjectProperty(Property):
|
class STIXObjectProperty(Property):
|
||||||
|
|
Loading…
Reference in New Issue