diff --git a/skyvern/cli/browser.py b/skyvern/cli/browser.py index df85dbd6cf..d80eb5b18a 100644 --- a/skyvern/cli/browser.py +++ b/skyvern/cli/browser.py @@ -17,7 +17,7 @@ def get_default_chrome_location(host_system: str) -> str: if host_system == "darwin": return "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" if host_system == "linux": - chrome_paths = ["/usr/bin/google-chrome", "/usr/bin/chromium", "/usr/bin/chromium-browser"] + chrome_paths = ("/usr/bin/google-chrome", "/usr/bin/chromium", "/usr/bin/chromium-browser") for path in chrome_paths: if os.path.exists(path): return path