Skip to content

Commit 90bfa81

Browse files
committed
fix style
1 parent 698a66d commit 90bfa81

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/idom/testing/display.py

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from contextlib import AsyncExitStack
44
from types import TracebackType
55
from typing import Any
6-
from urllib.parse import urljoin
76

87
from playwright.async_api import (
98
Browser,

tests/test_backend/test_utils.py

-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import asyncio
21
import threading
32
import time
43
from contextlib import ExitStack
@@ -11,7 +10,6 @@
1110
from idom.backend.utils import run as sync_run
1211
from idom.backend.utils import traversal_safe_path
1312
from idom.sample import SampleApp as SampleApp
14-
from tests.tooling.loop import open_event_loop
1513

1614

1715
@pytest.fixture
@@ -28,8 +26,6 @@ def test_find_available_port():
2826

2927

3028
async def test_run(page: Page, exit_stack: ExitStack):
31-
loop = exit_stack.enter_context(open_event_loop(as_current=False))
32-
3329
host = "127.0.0.1"
3430
port = find_available_port(host)
3531
url = f"http://{host}:{port}"

0 commit comments

Comments
 (0)