Remove __all__ assignment that doesn't do anything
authorBen Steffen <bds@mit.edu>
Tue, 26 Nov 2019 05:22:56 +0000 (00:22 -0500)
committerBen Steffen <bds@mit.edu>
Tue, 26 Nov 2019 05:22:56 +0000 (00:22 -0500)
python/invirt/authz.py

index 34f53c8..95118e7 100644 (file)
@@ -24,8 +24,3 @@ def expand_admin(name):
     """Expand an "administrator" to a list of authorized users."""
     for ep in pkg_resources.iter_entry_points('invirt.authz', cfg.authz.name):
         return ep.load().expandAdmin(name)
-
-
-__all__ = ['expandOwner',
-           'expandAdmin',
-           ]