diff --git a/autohotpy/communicator/communicator.py b/autohotpy/communicator/communicator.py index fe13b17..4e63264 100644 --- a/autohotpy/communicator/communicator.py +++ b/autohotpy/communicator/communicator.py @@ -4,10 +4,10 @@ from typing import TYPE_CHECKING, Any, Callable from autohotpy._unset_type import UNSET from autohotpy.proxies.ahk_object import AhkObject -from autohotpy.communicator.script_inject.callbacks import Callbacks +from autohotpy.communicator.script_inject.callbacks_ import Callbacks from autohotpy.exceptions import throw from autohotpy.communicator.references import ReferenceKeeper -from autohotpy.communicator.script_inject.callbacks import addr_of +from autohotpy.communicator.script_inject.callbacks_ import addr_of from autohotpy.communicator.dtypes import DTypes from autohotpy.proxies.var_ref import VarRef diff --git a/autohotpy/communicator/script_inject/Callbacks.py b/autohotpy/communicator/script_inject/callbacks_.py similarity index 100% rename from autohotpy/communicator/script_inject/Callbacks.py rename to autohotpy/communicator/script_inject/callbacks_.py diff --git a/autohotpy/communicator/script_inject/create_script.py b/autohotpy/communicator/script_inject/create_script.py index c009447..85757ee 100644 --- a/autohotpy/communicator/script_inject/create_script.py +++ b/autohotpy/communicator/script_inject/create_script.py @@ -8,7 +8,7 @@ from ..dtypes import DTypes if TYPE_CHECKING: - from .callbacks import CallbackPtrs, PythonConsts, MutableMappingMixin + from .callbacks_ import CallbackPtrs, PythonConsts, MutableMappingMixin def include(name):