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 @@ -158,7 +158,7 @@ def _delete_entries_cache(self):
158158
159159 def _deserialize (self , stream ):
160160 """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 )
162162 return self
163163
164164 def _entries_sorted (self ):
@@ -392,7 +392,7 @@ def raise_exc(e):
392392 continue
393393 # END glob handling
394394 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 ):
396396 for rela_file in files :
397397 # add relative paths only
398398 yield osp .join (root .replace (rs , '' ), rela_file )
You can’t perform that action at this time.
0 commit comments