summaryrefslogtreecommitdiff
path: root/git/objects/submodule/root.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-12-08 12:54:34 +0100
committerSebastian Thiel <byronimo@gmail.com>2016-12-08 12:54:34 +0100
commitb06b13e61e8db81afdd666ac68f4a489cec87d5a (patch)
tree05754ea627d77922c4ffcd3141bf5dc567dfcd3e /git/objects/submodule/root.py
parentb93ba7ca6913ce7f29e118fd573f6ed95808912b (diff)
downloadgitpython-b06b13e61e8db81afdd666ac68f4a489cec87d5a.tar.gz
chore(lint): flake8
Interestingly only shows in particular python versions on travis. Maybe some caching effect? Locally it is reproducible easily, with the latest flake8
Diffstat (limited to 'git/objects/submodule/root.py')
-rw-r--r--git/objects/submodule/root.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/submodule/root.py b/git/objects/submodule/root.py
index 4fe856c2..fbd658d7 100644
--- a/git/objects/submodule/root.py
+++ b/git/objects/submodule/root.py
@@ -17,7 +17,6 @@ log.addHandler(logging.NullHandler())
class RootUpdateProgress(UpdateProgress):
-
"""Utility class which adds more opcodes to the UpdateProgress"""
REMOVE, PATHCHANGE, BRANCHCHANGE, URLCHANGE = [
1 << x for x in range(UpdateProgress._num_op_codes, UpdateProgress._num_op_codes + 4)]
@@ -25,6 +24,7 @@ class RootUpdateProgress(UpdateProgress):
__slots__ = tuple()
+
BEGIN = RootUpdateProgress.BEGIN
END = RootUpdateProgress.END
REMOVE = RootUpdateProgress.REMOVE