From 489ff44d84e1176d96240abbe89bdd8151f3574b Mon Sep 17 00:00:00 2001 From: Lukas Masuch Date: Sat, 1 May 2021 13:14:15 +0000 Subject: [PATCH] Fix black formatting --- src/opyrator/ui/streamlit_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opyrator/ui/streamlit_ui.py b/src/opyrator/ui/streamlit_ui.py index 8164167..1b0b9b2 100644 --- a/src/opyrator/ui/streamlit_ui.py +++ b/src/opyrator/ui/streamlit_ui.py @@ -53,7 +53,7 @@ def launch_ui(opyrator_path: str, port: int = 8501) -> None: python_path = f"set PYTHONPATH=%PYTHONPATH%;{getcwd()} &&" subprocess.run( - f'''{python_path} "{sys.executable}" -m streamlit run --server.port={port} --server.headless=True --runner.magicEnabled=False --server.maxUploadSize=50 --browser.gatherUsageStats=False {f.name}''', + f"""{python_path} "{sys.executable}" -m streamlit run --server.port={port} --server.headless=True --runner.magicEnabled=False --server.maxUploadSize=50 --browser.gatherUsageStats=False {f.name}""", shell=True, )