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 a14ed93 commit c5de223Copy full SHA for c5de223
py/selenium/webdriver/common/bidi/browser.py
@@ -219,12 +219,12 @@ def from_dict(cls, data: dict) -> "ClientWindowInfo":
219
"""
220
return cls(
221
client_window = data.get("clientWindow"),
222
- state = data.get("state"),
223
- width = data.get("width"),
224
- height = data.get("height"),
225
- x = data.get("x"),
226
- y = data.get("y"),
227
- active = data.get("active"),
+ state=data.get("state"),
+ width=data.get("width"),
+ height=data.get("height"),
+ x=data.get("x"),
+ y=data.get("y"),
+ active=data.get("active"),
228
)
229
230
0 commit comments