Skip to content

Commit cc99c98

Browse files
committed
[py] Fix quotes to make linter happy
1 parent a622b07 commit cc99c98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

py/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def fin():
156156
options = get_options(driver_class, request.config)
157157
# There are issues with window size/position when running Firefox
158158
# under Wayland, so we use XWayland instead.
159-
os.environ['MOZ_ENABLE_WAYLAND'] = '0'
159+
os.environ["MOZ_ENABLE_WAYLAND"] = "0"
160160
if driver_class == "Chrome":
161161
options = get_options(driver_class, request.config)
162162
if driver_class == "Edge":
@@ -171,7 +171,7 @@ def fin():
171171
options.enable_downloads = True
172172
# There are issues with window size/position when running Firefox
173173
# under Wayland, so we use XWayland instead.
174-
os.environ['MOZ_ENABLE_WAYLAND'] = '0'
174+
os.environ["MOZ_ENABLE_WAYLAND"] = "0"
175175
if driver_path is not None:
176176
kwargs["service"] = get_service(driver_class, driver_path)
177177
if options is not None:

0 commit comments

Comments
 (0)