combine waterfall_[min|max]_level into a single config

This commit is contained in:
Jakob Ketterl
2021-02-25 15:13:39 +01:00
parent f6f0a87002
commit 5cd9d386a6
9 changed files with 95 additions and 24 deletions

View File

@@ -59,3 +59,6 @@ class DynamicConfig(PropertyLayer):
def __dict__(self):
return {k: v for k, v in super().__dict__().items() if v is not DynamicConfig._deleted}
def keys(self):
return [k for k in super().keys() if self.__contains__(k)]