This commit is contained in:
Saifeddine ALOUI 2024-03-20 22:47:14 +01:00
parent cb2fc6095d
commit b45c633fe6

View File

@ -290,7 +290,7 @@ class BaseConfig:
"""
if key == "exceptional_keys":
return super().__getattribute__(key)
if key in self.exceptional_keys + ["config","file_path"] or key.startswith("__"):
if key in self.exceptional_keys + ["config","file_path","copy"] or key.startswith("__"):
return super().__getattribute__(key)
else:
if self.config is None: