summaryrefslogtreecommitdiff
path: root/test/lib/__init__.py
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2022-05-18 08:01:38 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2022-05-18 08:01:38 +0800
commite530544546b2a4e5f00e8d9458bf1b895573ec41 (patch)
tree9b957bd812fe98664d3f1f75615dda8242663097 /test/lib/__init__.py
parentf78fc42b90711c81e06699d1ebdbe69e6648b949 (diff)
downloadgitpython-e530544546b2a4e5f00e8d9458bf1b895573ec41.tar.gz
reformat according to 'black' configuration file.
Diffstat (limited to 'test/lib/__init__.py')
-rw-r--r--test/lib/__init__.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/lib/__init__.py b/test/lib/__init__.py
index ae4c2b67..a4e57b8e 100644
--- a/test/lib/__init__.py
+++ b/test/lib/__init__.py
@@ -8,8 +8,4 @@
import inspect
from .helper import *
-__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))]