|
@ -8,7 +8,7 @@ from .serializer import Serializer |
|
|
class Config(object): |
|
|
class Config(object): |
|
|
def __init__(self, obj=None): |
|
|
def __init__(self, obj=None): |
|
|
self.__dict__.update({ |
|
|
self.__dict__.update({ |
|
|
k: copy.deepcopy(getattr(self, k)) for k in dir(self.__class__) |
|
|
k: getattr(self, k) for k in dir(self.__class__) |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
if obj: |
|
|
if obj: |
|
|