File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ def __init__(self, *args):
75
75
76
76
def _assert_fprogress (self , entries ):
77
77
self .assertEqual (len (entries ), len (self ._fprogress_map ))
78
- for path , call_count in self ._fprogress_map .items (): # @UnusedVariable
78
+ for _path , call_count in self ._fprogress_map .items ():
79
79
self .assertEqual (call_count , 2 )
80
80
# END for each item in progress map
81
81
self ._reset_progress ()
@@ -201,7 +201,7 @@ def test_index_file_from_tree(self, rw_repo):
201
201
202
202
# test BlobFilter
203
203
prefix = 'lib/git'
204
- for stage , blob in base_index .iter_blobs (BlobFilter ([prefix ])): # @UnusedVariable
204
+ for _stage , blob in base_index .iter_blobs (BlobFilter ([prefix ])):
205
205
assert blob .path .startswith (prefix )
206
206
207
207
# writing a tree should fail with an unmerged index
You can’t perform that action at this time.
0 commit comments