Skip to content

Commit b89b089

Browse files
committed
fix(indent): flake-8 happyness
1 parent 6d83f44 commit b89b089

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

git/util.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ class RemoteProgress(object):
165165
and git-fetch and to dispatch callbacks allowing subclasses to react to the progress.
166166
"""
167167
_num_op_codes = 8
168-
BEGIN, END, COUNTING, COMPRESSING, WRITING, RECEIVING, RESOLVING, FINDING_SOURCES = [1 << x for x in range(_num_op_codes)]
168+
BEGIN, END, COUNTING, COMPRESSING, WRITING, RECEIVING, RESOLVING, FINDING_SOURCES = \
169+
[1 << x for x in range(_num_op_codes)]
169170
STAGE_MASK = BEGIN | END
170171
OP_MASK = ~STAGE_MASK
171172

0 commit comments

Comments
 (0)