There was an error while loading. Please reload this page.
1 parent 6d83f44 commit b89b089Copy full SHA for b89b089
1 file changed
git/util.py
@@ -165,7 +165,8 @@ class RemoteProgress(object):
165
and git-fetch and to dispatch callbacks allowing subclasses to react to the progress.
166
"""
167
_num_op_codes = 8
168
- 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 = \
169
+ [1 << x for x in range(_num_op_codes)]
170
STAGE_MASK = BEGIN | END
171
OP_MASK = ~STAGE_MASK
172
0 commit comments