Skip to content

Commit 95897f9

Browse files
thetwojByron
authored andcommitted
Satisfying flake8
1 parent 4744efb commit 95897f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git/diff.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ class Diff(object):
258258
NULL_BIN_SHA = b"\0" * 20
259259

260260
__slots__ = ("a_blob", "b_blob", "a_mode", "b_mode", "a_rawpath", "b_rawpath",
261-
"new_file", "deleted_file", "copied_file", "raw_rename_from",
261+
"new_file", "deleted_file", "copied_file", "raw_rename_from",
262262
"raw_rename_to", "diff", "change_type", "score")
263263

264264
def __init__(self, repo, a_rawpath, b_rawpath, a_blob_id, b_blob_id, a_mode,
@@ -432,7 +432,7 @@ def _index_from_patch_format(cls, repo, proc):
432432
a_path, b_path = header.groups()
433433

434434
new_file, deleted_file, copied_file = \
435-
bool(new_file_mode), bool(deleted_file_mode), bool(copied_file_name)
435+
bool(new_file_mode), bool(deleted_file_mode), bool(copied_file_name)
436436

437437
a_path = cls._pick_best_path(a_path, rename_from, a_path_fallback)
438438
b_path = cls._pick_best_path(b_path, rename_to, b_path_fallback)

0 commit comments

Comments
 (0)