mirror of
				https://github.com/Mbed-TLS/mbedtls.git
				synced 2025-11-03 20:33:16 +03:00 
			
		
		
		
	Start unused variable with underscore
This commit is contained in:
		@@ -178,7 +178,7 @@ class AbiChecker(object):
 | 
				
			|||||||
        )
 | 
					        )
 | 
				
			||||||
        make_output, _ = make_process.communicate()
 | 
					        make_output, _ = make_process.communicate()
 | 
				
			||||||
        self.log.debug(make_output.decode("utf-8"))
 | 
					        self.log.debug(make_output.decode("utf-8"))
 | 
				
			||||||
        for root, dirs, files in os.walk(git_worktree_path): # pylint: disable=unused-variable
 | 
					        for root, _dirs, files in os.walk(git_worktree_path):
 | 
				
			||||||
            for file in fnmatch.filter(files, "*.so"):
 | 
					            for file in fnmatch.filter(files, "*.so"):
 | 
				
			||||||
                version.modules[os.path.splitext(file)[0]] = (
 | 
					                version.modules[os.path.splitext(file)[0]] = (
 | 
				
			||||||
                    os.path.join(root, file)
 | 
					                    os.path.join(root, file)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user