master
Desai, Kartikey H 2019-12-05 15:43:58 -05:00 committed by Chris Lenk
parent 1d9ff5d5ae
commit a350ad01ac
1 changed files with 4 additions and 1 deletions

View File

@ -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