Merge pull request #656 from tobiasge/fix-653

Add __dir__ to configuration file
This commit is contained in:
Tobias Genannt 2021-11-30 11:48:11 +01:00 committed by GitHub
commit 4b7037bbe6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -82,3 +82,10 @@ def __getattr__(name):
except:
pass
raise AttributeError
def __dir__():
names = []
for config in _loaded_configurations:
names.extend(config.__dir__())
return names