diff options
Diffstat (limited to 'git/__init__.py')
| -rw-r--r-- | git/__init__.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/git/__init__.py b/git/__init__.py index 3f26886f..f746e1fc 100644 --- a/git/__init__.py +++ b/git/__init__.py @@ -61,11 +61,7 @@ except GitError as exc: # } END imports -__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))] # { Initialize git executable path |
