Skip to content

Commit dd7b258

Browse files
clean up
1 parent 720003e commit dd7b258

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

py/selenium/webdriver/common/bidi/browser.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,13 @@ def from_dict(cls, data: dict) -> "ClientWindowInfo":
222222
ValueError: If required fields are missing or have invalid types.
223223
"""
224224
return cls(
225-
client_window=data.get("clientWindow"),
226-
state=data.get("state"),
227-
width=data.get("width"),
228-
height=data.get("height"),
229-
x=data.get("x"),
230-
y=data.get("y"),
231-
active=data.get("active"),
225+
client_window = data.get("clientWindow"),
226+
state = data.get("state"),
227+
width = data.get("width"),
228+
height = data.get("height"),
229+
x = data.get("x"),
230+
y = data.get("y"),
231+
active = data.get("active"),
232232
)
233233

234234

0 commit comments

Comments
 (0)