We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 720003e commit dd7b258Copy full SHA for dd7b258
py/selenium/webdriver/common/bidi/browser.py
@@ -222,13 +222,13 @@ def from_dict(cls, data: dict) -> "ClientWindowInfo":
222
ValueError: If required fields are missing or have invalid types.
223
"""
224
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"),
+ client_window = data.get("clientWindow"),
+ state = data.get("state"),
+ width = data.get("width"),
+ height = data.get("height"),
+ x = data.get("x"),
+ y = data.get("y"),
+ active = data.get("active"),
232
)
233
234
0 commit comments