diff options
Diffstat (limited to 'git/objects/__init__.py')
| -rw-r--r-- | git/objects/__init__.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/git/objects/__init__.py b/git/objects/__init__.py index d2e1e53a..5910ac58 100644 --- a/git/objects/__init__.py +++ b/git/objects/__init__.py @@ -21,8 +21,4 @@ del smutil # must come after submodule was made available -__all__ = [ - name - for name, obj in locals().items() - if not (name.startswith("_") or inspect.ismodule(obj)) -] +__all__ = [name for name, obj in locals().items() if not (name.startswith("_") or inspect.ismodule(obj))] |
