Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
sadym-chromium committed Nov 8, 2024
1 parent 060a0a4 commit 17592fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/webdriver/webdriver/bidi/modules/bluetooth.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, Mapping, MutableMapping
from typing import Any, Mapping

from ._module import BidiModule, command

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ async def test_contexts_are_isolated(bidi_session, top_context, test_page):
await set_simulate_adapter(bidi_session, another_browsing_context,
test_page, "absent")

assert await get_bluetooth_availability(bidi_session, top_context) == True
assert await get_bluetooth_availability(bidi_session, top_context) is True
assert await get_bluetooth_availability(bidi_session,
another_browsing_context) == False
another_browsing_context) is False

0 comments on commit 17592fe

Please sign in to comment.