File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ def _delete_entries_cache(self):
158
158
159
159
def _deserialize (self , stream ):
160
160
"""Initialize this instance with index values read from the given stream"""
161
- self .version , self .entries , self ._extension_data , conten_sha = read_cache (stream ) # @UnusedVariable
161
+ self .version , self .entries , self ._extension_data , _conten_sha = read_cache (stream )
162
162
return self
163
163
164
164
def _entries_sorted (self ):
@@ -392,7 +392,7 @@ def raise_exc(e):
392
392
continue
393
393
# END glob handling
394
394
try :
395
- for root , dirs , files in os .walk (abs_path , onerror = raise_exc ): # @UnusedVariable
395
+ for root , _dirs , files in os .walk (abs_path , onerror = raise_exc ):
396
396
for rela_file in files :
397
397
# add relative paths only
398
398
yield osp .join (root .replace (rs , '' ), rela_file )
You can’t perform that action at this time.
0 commit comments