Skip to content

Commit f37a13e

Browse files
committed
run format.sh
1 parent 23ae0ca commit f37a13e

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
from typing import Dict, List
18+
from typing import Dict
19+
from typing import List
1920

2021

2122
class ClientWindowState:
2223
"""Represents a window state."""
24+
2325
FULLSCREEN = "fullscreen"
2426
MAXIMIZED = "maximized"
2527
MINIMIZED = "minimized"

py/test/selenium/webdriver/common/bidi_browser_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717

1818
import pytest
1919

20-
from selenium.webdriver.common.bidi.browser import ClientWindowInfo, ClientWindowState
20+
from selenium.webdriver.common.bidi.browser import ClientWindowInfo
21+
from selenium.webdriver.common.bidi.browser import ClientWindowState
2122

2223

2324
@pytest.mark.xfail_safari

0 commit comments

Comments
 (0)