mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2025-04-05 04:08:58 +08:00
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
import os
|
|
import subprocess
|
|
|
|
def process_file(file_path):
|
|
"""
|
|
Run autoflake on the file to remove unused imports in-place.
|
|
"""
|
|
try:
|
|
# The --in-place option modifies the file, and
|
|
# --remove-all-unused-imports removes unused imports.
|
|
subprocess.run(
|
|
["autoflake", "--in-place", "--remove-all-unused-imports", file_path],
|
|
check=True
|
|
)
|
|
print(f"Processed: {file_path}")
|
|
except subprocess.CalledProcessError as e:
|
|
print(f"Error processing {file_path}: {e}")
|
|
|
|
def process_directory(root_dir):
|
|
"""
|
|
Walk recursively through root_dir and process all .py files.
|
|
"""
|
|
for dirpath, _, filenames in os.walk(root_dir):
|
|
for filename in filenames:
|
|
if filename.endswith(".py"):
|
|
file_path = os.path.join(dirpath, filename)
|
|
process_file(file_path)
|
|
|
|
if __name__ == '__main__':
|
|
# Start from the current directory (you can change this to your project root)
|
|
project_root = os.getcwd()
|
|
process_directory(project_root)
|