Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit bf50487

Browse filesBrowse files
committed
Autopep8 with max line length of 120
1 parent 27c577d commit bf50487
Copy full SHA for bf50487

61 files changed

+3,544-3,279Lines changed: 3544 additions & 3279 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎git/__init__.py‎

Copy file name to clipboardExpand all lines: git/__init__.py
+10-11Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
def _init_externals():
1616
"""Initialize external projects by putting them into the path"""
1717
sys.path.append(os.path.join(os.path.dirname(__file__), 'ext', 'gitdb'))
18-
18+
1919
try:
2020
import gitdb
2121
except ImportError:
2222
raise ImportError("'gitdb' could not be found in your PYTHONPATH")
23-
#END verify import
24-
23+
# END verify import
24+
2525
#} END initialization
2626

2727
#################
@@ -41,14 +41,13 @@ def _init_externals():
4141
from git.remote import *
4242
from git.index import *
4343
from git.util import (
44-
LockFile,
45-
BlockingLockFile,
46-
Stats,
47-
Actor
48-
)
44+
LockFile,
45+
BlockingLockFile,
46+
Stats,
47+
Actor
48+
)
4949

5050
#} END imports
5151

52-
__all__ = [ name for name, obj in locals().items()
53-
if not (name.startswith('_') or inspect.ismodule(obj)) ]
54-
52+
__all__ = [name for name, obj in locals().items()
53+
if not (name.startswith('_') or inspect.ismodule(obj))]

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.