Skip to content

Commit

Permalink
Replace double quote with single quote
Browse files Browse the repository at this point in the history
Fix black warnings
  • Loading branch information
Vangelis Banos committed Apr 15, 2024
1 parent 1c0c385 commit 7d58042
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions brozzler/chrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,11 @@ def start(
]
major_version = check_version(self.chrome_exe)
if major_version >= 109:
chrome_args.append('--headless=new')
chrome_args.append("--headless=new")
elif 96 <= major_version <= 108:
chrome_args.append('--headless=chrome')
chrome_args.append("--headless=chrome")
else:
chrome_args.append('--headless')
chrome_args.append("--headless")

extra_chrome_args = os.environ.get("BROZZLER_EXTRA_CHROME_ARGS")
if extra_chrome_args:
Expand Down

0 comments on commit 7d58042

Please sign in to comment.