Fixes #310
parent
1d9ff5d5ae
commit
a350ad01ac
|
@ -1,6 +1,9 @@
|
|||
"""Utility functions and classes for the STIX2 library."""
|
||||
|
||||
from collections import Mapping
|
||||
try:
|
||||
from collections.abc import Mapping
|
||||
except ImportError:
|
||||
from collections import Mapping
|
||||
import copy
|
||||
import datetime as dt
|
||||
import json
|
||||
|
|
Loading…
Reference in New Issue