Skip to content

Commit 1c6f4c1

Browse files
committed
Automated PEP 8 fixes
1 parent 7216749 commit 1c6f4c1

26 files changed

+1108
-1127
lines changed

gitdb/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ def _init_externals():
1212
"""Initialize external projects by putting them into the path"""
1313
for module in ('async', 'smmap'):
1414
sys.path.append(os.path.join(os.path.dirname(__file__), 'ext', module))
15-
15+
1616
try:
1717
__import__(module)
1818
except ImportError:
1919
raise ImportError("'%s' could not be imported, assure it is located in your PYTHONPATH" % module)
2020
#END verify import
2121
#END handel imports
22-
22+
2323
#} END initialization
2424

2525
_init_externals()

0 commit comments

Comments
 (0)