From 911855205c1238336ee94964aa845fccbd5d070b Mon Sep 17 00:00:00 2001 From: A5rocks <40616000+A5rocks@users.noreply.github.com> Date: Mon, 4 Nov 2019 03:58:05 +0900 Subject: [PATCH] Undo the change to `disco.util.config.Config`. There is probably a way to do this, but that's topic of a different PR. --- disco/util/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/util/config.py b/disco/util/config.py index 5d8d279..418ab19 100644 --- a/disco/util/config.py +++ b/disco/util/config.py @@ -8,7 +8,7 @@ from .serializer import Serializer class Config(object): def __init__(self, obj=None): 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: