chore(format): run black on dev (#2001)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2024-04-22 22:12:19 +09:00 committed by GitHub
parent 75e9d28506
commit 189eef5936
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -207,5 +207,13 @@ def download_all_assets(tmpdir: str, version="0.2.2"):
download_and_extract_tar_gz(RVCMD_URL, tmpdir) download_and_extract_tar_gz(RVCMD_URL, tmpdir)
os.chmod(cmdfile, 0o755) os.chmod(cmdfile, 0o755)
subprocess.run( subprocess.run(
[cmdfile, "-notui", "-w", "0", "-dns", os.path.join(tmpdir, "dns.yaml"), "assets/all"] [
cmdfile,
"-notui",
"-w",
"0",
"-dns",
os.path.join(tmpdir, "dns.yaml"),
"assets/all",
]
) )