mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-09-20 12:44:40 -04:00
Replace double quote with single quote
Fix black warnings
This commit is contained in:
parent
1c0c385ff1
commit
7d580420ba
1 changed files with 3 additions and 3 deletions
|
@ -207,11 +207,11 @@ class Chrome:
|
|||
]
|
||||
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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue