Merge pull request #355 from netbox-community/develop

Version 0.26.2
This commit is contained in:
Christian Mäder 2020-10-27 16:41:48 +01:00 committed by GitHub
commit a51ad36801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -1 +1 @@
0.26.1
0.26.2

View File

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