re-organize imports in v20, v21

master
Emmanuelle Vargas-Gonzalez 2019-05-08 10:35:53 -04:00
parent 47f8ed9282
commit d5f0c46dd5
2 changed files with 4 additions and 2 deletions

View File

@ -6,11 +6,12 @@ import copy
from ..base import _STIXBase from ..base import _STIXBase
from ..custom import _custom_marking_builder from ..custom import _custom_marking_builder
from ..markings import _MarkingsMixin from ..markings import _MarkingsMixin
from ..markings.utils import check_tlp_marking
from ..properties import ( from ..properties import (
HashesProperty, IDProperty, ListProperty, Property, ReferenceProperty, HashesProperty, IDProperty, ListProperty, Property, ReferenceProperty,
SelectorProperty, StringProperty, TimestampProperty, TypeProperty, SelectorProperty, StringProperty, TimestampProperty, TypeProperty,
) )
from ..utils import NOW, _get_dict, check_tlp_marking from ..utils import NOW, _get_dict
class ExternalReference(_STIXBase): class ExternalReference(_STIXBase):

View File

@ -6,12 +6,13 @@ import copy
from ..base import _STIXBase from ..base import _STIXBase
from ..custom import _custom_marking_builder from ..custom import _custom_marking_builder
from ..markings import _MarkingsMixin from ..markings import _MarkingsMixin
from ..markings.utils import check_tlp_marking
from ..properties import ( from ..properties import (
BooleanProperty, DictionaryProperty, HashesProperty, IDProperty, BooleanProperty, DictionaryProperty, HashesProperty, IDProperty,
IntegerProperty, ListProperty, Property, ReferenceProperty, IntegerProperty, ListProperty, Property, ReferenceProperty,
SelectorProperty, StringProperty, TimestampProperty, TypeProperty, SelectorProperty, StringProperty, TimestampProperty, TypeProperty,
) )
from ..utils import NOW, _get_dict, check_tlp_marking from ..utils import NOW, _get_dict
class ExternalReference(_STIXBase): class ExternalReference(_STIXBase):