Merge branch 'khdesai-fix_issue_310'
commit
387810c4a3
|
@ -1,5 +1,8 @@
|
|||
"""Utility functions and classes for the STIX2 library."""
|
||||
|
||||
try:
|
||||
from collections.abc import Mapping
|
||||
except ImportError:
|
||||
from collections import Mapping
|
||||
import copy
|
||||
import datetime as dt
|
||||
|
|
Loading…
Reference in New Issue