Skip to content

Commit

Permalink
workaround for github workflows dumb case insensitivity for files
Browse files Browse the repository at this point in the history
  • Loading branch information
mkzeender committed Aug 25, 2024
1 parent a1c572c commit c02a071
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions autohotpy/communicator/communicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion autohotpy/communicator/script_inject/create_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit c02a071

Please sign in to comment.