From 189eef5936f5a7b9373fb87f6077a128dbf4bc50 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 22:12:19 +0900 Subject: [PATCH] chore(format): run black on dev (#2001) Co-authored-by: github-actions[bot] --- infer/lib/rvcmd.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/infer/lib/rvcmd.py b/infer/lib/rvcmd.py index 98147ad..06971f8 100644 --- a/infer/lib/rvcmd.py +++ b/infer/lib/rvcmd.py @@ -207,5 +207,13 @@ def download_all_assets(tmpdir: str, version="0.2.2"): download_and_extract_tar_gz(RVCMD_URL, tmpdir) os.chmod(cmdfile, 0o755) 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", + ] )