use extend method for simplification.
Co-authored-by: Christian Mäder <cimnine@users.noreply.github.com>
This commit is contained in:
parent
a3c21ae0ac
commit
7694fd320a
|
@ -17,6 +17,5 @@ def __getattr__(name):
|
|||
def __dir__():
|
||||
names = []
|
||||
for config in _loaded_configurations:
|
||||
for name in config.__dir__():
|
||||
names.append(name)
|
||||
names.extend(config.__dir__())
|
||||
return names
|
||||
|
|
Loading…
Reference in New Issue