Skip to content

Commit 39c8a87

Browse files
committed
rename modules
1 parent 5da24a0 commit 39c8a87

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .spoof import create_cursor
2-
from .mouse_helper import install_mouse_helper
1+
from ._spoof import create_cursor
2+
from ._mouse_helper import install_mouse_helper
33

44
__all__ = ["create_cursor", "install_mouse_helper"]

pyppeteer_ghost_cursor/playwright/async_api/spoof.py renamed to pyppeteer_ghost_cursor/playwright/async_api/_spoof.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
from typing import Union, Coroutine, Optional, Dict, List
55
from playwright.async_api import Page, ElementHandle, CDPSession
66

7-
from pyppeteer_ghost_cursor.shared.math import (
7+
from pyppeteer_ghost_cursor.shared._math import (
88
Vector,
99
origin,
1010
overshoot,
1111
)
12-
from pyppeteer_ghost_cursor.shared.spoof import (
12+
from pyppeteer_ghost_cursor.shared._spoof import (
1313
path,
1414
should_overshoot,
1515
get_random_box_point,
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .spoof import create_cursor
2-
from .mouse_helper import install_mouse_helper
1+
from ._spoof import create_cursor
2+
from ._mouse_helper import install_mouse_helper
33

44
__all__ = ["create_cursor", "install_mouse_helper"]

pyppeteer_ghost_cursor/playwright/sync_api/spoof.py renamed to pyppeteer_ghost_cursor/playwright/sync_api/_spoof.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
from typing import Union, Optional, Dict, List
66
from playwright.sync_api import Page, ElementHandle
77

8-
from pyppeteer_ghost_cursor.shared.math import (
8+
from pyppeteer_ghost_cursor.shared._math import (
99
Vector,
1010
origin,
1111
overshoot,
1212
)
13-
from pyppeteer_ghost_cursor.shared.spoof import (
13+
from pyppeteer_ghost_cursor.shared._spoof import (
1414
path,
1515
should_overshoot,
1616
get_random_box_point,
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .spoof import create_cursor
2-
from .mouse_helper import install_mouse_helper
1+
from ._spoof import create_cursor
2+
from ._mouse_helper import install_mouse_helper
33

44
__all__ = ["create_cursor", "install_mouse_helper"]

pyppeteer_ghost_cursor/pyppeteer/spoof.py renamed to pyppeteer_ghost_cursor/pyppeteer/_spoof.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
# https://github.com/pyppeteer/pyppeteer/blob/dev/pyppeteer/element_handle.py
1414
from pyppeteer.element_handle import ElementHandle
1515

16-
from pyppeteer_ghost_cursor.shared.math import (
16+
from pyppeteer_ghost_cursor.shared._math import (
1717
Vector,
1818
origin,
1919
overshoot,
2020
)
21-
from pyppeteer_ghost_cursor.shared.spoof import (
21+
from pyppeteer_ghost_cursor.shared._spoof import (
2222
path,
2323
should_overshoot,
2424
get_random_box_point,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from .spoof import get_path as path
1+
from ._spoof import get_path as path
22

33
__all__ = ["path"]

0 commit comments

Comments
 (0)