auto-fix pre-commit issues

This commit is contained in:
github-actions[bot] 2025-06-12 06:54:31 +00:00
parent 63cf9f83c7
commit f7a9afaaff

View File

@ -367,7 +367,9 @@ def deploy_libraries(app_bundle: str, lib_dirs: list[str]) -> None:
cmd.extend(command_tuple)
print(f"Executing {cmd} {path}")
try:
result = subprocess.run(cmd + [path], check=True, capture_output=True, text=True)
result = subprocess.run(
cmd + [path], check=True, capture_output=True, text=True
)
print(result.stdout)
print(result.stderr)
except subprocess.CalledProcessError as e:
@ -379,7 +381,6 @@ def deploy_libraries(app_bundle: str, lib_dirs: list[str]) -> None:
raise
def main():
parser = argparse.ArgumentParser(description="Enhanced macdeployqt implementation")
parser.add_argument("app_bundle", help="Path to the app bundle")