mirror of https://github.com/MISP/PyMISP
parent
e8bba395bc
commit
de65608a12
|
@ -5,7 +5,6 @@ import sys
|
||||||
import datetime
|
import datetime
|
||||||
import json
|
import json
|
||||||
from json import JSONEncoder
|
from json import JSONEncoder
|
||||||
import collections
|
|
||||||
import logging
|
import logging
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
|
|
||||||
|
@ -82,7 +81,7 @@ class MISPEncode(JSONEncoder):
|
||||||
return JSONEncoder.default(self, obj)
|
return JSONEncoder.default(self, obj)
|
||||||
|
|
||||||
|
|
||||||
class AbstractMISP(collections.MutableMapping):
|
class AbstractMISP(MutableMapping):
|
||||||
|
|
||||||
__not_jsonable = []
|
__not_jsonable = []
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue