From: Ben Steffen Date: Tue, 26 Nov 2019 05:22:56 +0000 (-0500) Subject: Remove __all__ assignment that doesn't do anything X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-base.git/commitdiff_plain/6011928d5957311cbad545208980b64a177a40e5?ds=inline Remove __all__ assignment that doesn't do anything --- diff --git a/python/invirt/authz.py b/python/invirt/authz.py index 34f53c8..95118e7 100644 --- a/python/invirt/authz.py +++ b/python/invirt/authz.py @@ -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', - ]