diff --git a/ahk/_async/transport.py b/ahk/_async/transport.py index 69b7e1e..1501b4c 100644 --- a/ahk/_async/transport.py +++ b/ahk/_async/transport.py @@ -58,8 +58,7 @@ T_SyncFuture = TypeVar('T_SyncFuture') -class AHKProtocolError(Exception): - ... +class AHKProtocolError(Exception): ... class AsyncFutureResult(Generic[T_AsyncFuture]): # unasync: remove @@ -191,8 +190,7 @@ def result(self, timeout: Optional[float] = None) -> T_SyncFuture: @runtime_checkable class Killable(Protocol): - def kill(self) -> None: - ... + def kill(self) -> None: ... def kill(proc: Killable) -> None: @@ -213,17 +211,14 @@ def async_assert_send_nonblocking_type_correct( class Communicable(Protocol): runargs: List[str] - def communicate(self, input_bytes: Optional[bytes], timeout: Optional[int] = None) -> Tuple[bytes, bytes]: - ... + def communicate(self, input_bytes: Optional[bytes], timeout: Optional[int] = None) -> Tuple[bytes, bytes]: ... async def acommunicate( # unasync: remove self, input_bytes: Optional[bytes], timeout: Optional[int] = None - ) -> Tuple[bytes, bytes]: - ... + ) -> Tuple[bytes, bytes]: ... @property - def returncode(self) -> Optional[int]: - ... + def returncode(self) -> Optional[int]: ... class AsyncAHKProcess: diff --git a/ahk/_async/window.py b/ahk/_async/window.py index d308083..656e0d9 100644 --- a/ahk/_async/window.py +++ b/ahk/_async/window.py @@ -25,8 +25,7 @@ from .transport import AsyncFutureResult -class WindowNotFoundException(Exception): - ... +class WindowNotFoundException(Exception): ... AsyncPropertyReturnStr: TypeAlias = Coroutine[None, None, str] # unasync: remove @@ -535,20 +534,16 @@ async def redraw(self, *, blocking: bool = True) -> Union[None, AsyncFutureResul ) @overload - async def set_style(self, style: str) -> bool: - ... + async def set_style(self, style: str) -> bool: ... @overload - async def set_style(self, style: str, *, blocking: Literal[True]) -> bool: - ... + async def set_style(self, style: str, *, blocking: Literal[True]) -> bool: ... @overload - async def set_style(self, style: str, *, blocking: Literal[False]) -> AsyncFutureResult[bool]: - ... + async def set_style(self, style: str, *, blocking: Literal[False]) -> AsyncFutureResult[bool]: ... @overload - async def set_style(self, style: str, *, blocking: bool = True) -> Union[bool, AsyncFutureResult[bool]]: - ... + async def set_style(self, style: str, *, blocking: bool = True) -> Union[bool, AsyncFutureResult[bool]]: ... async def set_style(self, style: str, *, blocking: bool = True) -> Union[bool, AsyncFutureResult[bool]]: return await self._engine.win_set_style( @@ -560,20 +555,16 @@ async def set_style(self, style: str, *, blocking: bool = True) -> Union[bool, A ) @overload - async def set_ex_style(self, style: str) -> bool: - ... + async def set_ex_style(self, style: str) -> bool: ... @overload - async def set_ex_style(self, style: str, *, blocking: Literal[False]) -> AsyncFutureResult[bool]: - ... + async def set_ex_style(self, style: str, *, blocking: Literal[False]) -> AsyncFutureResult[bool]: ... @overload - async def set_ex_style(self, style: str, *, blocking: Literal[True]) -> bool: - ... + async def set_ex_style(self, style: str, *, blocking: Literal[True]) -> bool: ... @overload - async def set_ex_style(self, style: str, *, blocking: bool = True) -> Union[bool, AsyncFutureResult[bool]]: - ... + async def set_ex_style(self, style: str, *, blocking: bool = True) -> Union[bool, AsyncFutureResult[bool]]: ... async def set_ex_style(self, style: str, *, blocking: bool = True) -> Union[bool, AsyncFutureResult[bool]]: return await self._engine.win_set_ex_style( @@ -585,20 +576,16 @@ async def set_ex_style(self, style: str, *, blocking: bool = True) -> Union[bool ) @overload - async def set_region(self, options: str) -> bool: - ... + async def set_region(self, options: str) -> bool: ... @overload - async def set_region(self, options: str, *, blocking: Literal[True]) -> bool: - ... + async def set_region(self, options: str, *, blocking: Literal[True]) -> bool: ... @overload - async def set_region(self, options: str, *, blocking: Literal[False]) -> AsyncFutureResult[bool]: - ... + async def set_region(self, options: str, *, blocking: Literal[False]) -> AsyncFutureResult[bool]: ... @overload - async def set_region(self, options: str, *, blocking: bool = True) -> Union[bool, AsyncFutureResult[bool]]: - ... + async def set_region(self, options: str, *, blocking: bool = True) -> Union[bool, AsyncFutureResult[bool]]: ... async def set_region(self, options: str, *, blocking: bool = True) -> Union[bool, AsyncFutureResult[bool]]: return await self._engine.win_set_region( diff --git a/ahk/_hotkey.py b/ahk/_hotkey.py index 07e2c16..a9bdd66 100644 --- a/ahk/_hotkey.py +++ b/ahk/_hotkey.py @@ -158,8 +158,7 @@ def on_clipboard_change( self.restart() -class STOP: - ... +class STOP: ... class ThreadedHotkeyTransport(HotkeyTransportBase): @@ -450,8 +449,7 @@ def _validate(self) -> None: @runtime_checkable class Killable(Protocol): - def kill(self) -> None: - ... + def kill(self) -> None: ... def kill(proc: Killable) -> None: diff --git a/ahk/keys.py b/ahk/keys.py index c978ce7..79d9526 100644 --- a/ahk/keys.py +++ b/ahk/keys.py @@ -115,8 +115,7 @@ def __repr__(self) -> str: @runtime_checkable class Stringable(Protocol): - def __str__(self) -> str: - ... + def __str__(self) -> str: ... class KeyModifier(Key): diff --git a/ahk/message.py b/ahk/message.py index a78206c..c9bf127 100644 --- a/ahk/message.py +++ b/ahk/message.py @@ -28,8 +28,7 @@ from typing import Union -class OutOfMessageTypes(Exception): - ... +class OutOfMessageTypes(Exception): ... Position = namedtuple('Position', ('x', 'y', 'width', 'height')) @@ -37,8 +36,7 @@ class OutOfMessageTypes(Exception): @runtime_checkable class BytesLineReadable(Protocol): - def readline(self) -> bytes: - ... + def readline(self) -> bytes: ... def is_window_control_list_response(resp_obj: object) -> TypeGuard[Tuple[str, List[Tuple[str, str]]]]: diff --git a/buildunasync.py b/buildunasync.py index d187ee8..d53b399 100644 --- a/buildunasync.py +++ b/buildunasync.py @@ -18,7 +18,7 @@ 'async_sleep': 'sleep', 'AsyncFutureResult': 'FutureResult', '_async_run_nonblocking': '_sync_run_nonblocking', - 'acommunicate': 'communicate' + 'acommunicate': 'communicate', # "__aenter__": "__aenter__", }, ),