Skip to content

Commit b2bf575

Browse files
committed
remove unused import, formatting
1 parent 39c8a87 commit b2bf575

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pyppeteer_ghost_cursor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def createCursor(*args, **kwargs):
1818
)
1919
if "performRandomMoves" in kwargs:
2020
kwargs["perform_random_moves"] = kwargs["performRandomMoves"]
21-
del kwargs ["performRandomMoves"]
21+
del kwargs["performRandomMoves"]
2222
return create_cursor(*args, **kwargs)
2323

2424

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from playwright.async_api import Page
2-
from typing import Coroutine
32
from pathlib import Path
43

54

65
async def install_mouse_helper(page: Page):
7-
await page.add_init_script(path=Path(__file__).parent.joinpath("../../js/mouseHelper.js"))
6+
await page.add_init_script(
7+
path=Path(__file__).parent.joinpath("../../js/mouseHelper.js")
8+
)

pyppeteer_ghost_cursor/pyppeteer/_mouse_helper.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from pyppeteer.page import Page
2-
from typing import Coroutine
32
from pathlib import Path
43

54

0 commit comments

Comments
 (0)