return an empty layer if no config is available

This commit is contained in:
Jakob Ketterl 2021-04-17 23:56:32 +02:00
parent b4c2923dd2
commit dae32f2e95
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ class ClassicConfig(PropertyReadOnly):
return ClassicConfig._loadPythonFile(file)
except FileNotFoundError:
pass
return PropertyLayer()
@staticmethod
def _toLayer(dictionary: dict):