summaryrefslogtreecommitdiff
path: root/git/util.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-04-16 09:09:26 +0200
committerSebastian Thiel <byronimo@gmail.com>2015-04-16 09:09:26 +0200
commitb89b089972b5bac824ac3de67b8a02097e7e95d7 (patch)
treeaf9625a5f096848da889728741c9069dfe3d2fe3 /git/util.py
parent6d83f44007c5c581eae7ddc6c5de33311b7c1895 (diff)
downloadgitpython-b89b089972b5bac824ac3de67b8a02097e7e95d7.tar.gz
fix(indent): flake-8 happyness
Diffstat (limited to 'git/util.py')
-rw-r--r--git/util.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/git/util.py b/git/util.py
index ec605b0b..fb459da1 100644
--- a/git/util.py
+++ b/git/util.py
@@ -165,7 +165,8 @@ class RemoteProgress(object):
and git-fetch and to dispatch callbacks allowing subclasses to react to the progress.
"""
_num_op_codes = 8
- BEGIN, END, COUNTING, COMPRESSING, WRITING, RECEIVING, RESOLVING, FINDING_SOURCES = [1 << x for x in range(_num_op_codes)]
+ BEGIN, END, COUNTING, COMPRESSING, WRITING, RECEIVING, RESOLVING, FINDING_SOURCES = \
+ [1 << x for x in range(_num_op_codes)]
STAGE_MASK = BEGIN | END
OP_MASK = ~STAGE_MASK