@@ -321,8 +321,7 @@ async def run_script(self, script_text_or_path: str, /, *, blocking: bool = True
321
321
@abstractmethod
322
322
async def run_script (
323
323
self , script_text_or_path : str , / , * , blocking : bool = True , timeout : Optional [int ] = None
324
- ) -> Union [str , AsyncFutureResult [str ]]:
325
- return NotImplemented
324
+ ) -> Union [str , AsyncFutureResult [str ]]: ...
326
325
327
326
# fmt: off
328
327
@overload
@@ -565,22 +564,21 @@ async def function_call(
565
564
@abstractmethod
566
565
async def send (
567
566
self , request : RequestMessage , engine : Optional [AsyncAHK [Any ]] = None
568
- ) -> Union [None , Tuple [int , int ], int , str , bool , AsyncWindow , List [AsyncWindow ], List [AsyncControl ]]:
569
- return NotImplemented
567
+ ) -> Union [None , Tuple [int , int ], int , str , bool , AsyncWindow , List [AsyncWindow ], List [AsyncControl ]]: ...
570
568
571
569
@abstractmethod # unasync: remove
572
570
async def a_send_nonblocking ( # unasync: remove
573
571
self , request : RequestMessage , engine : Optional [AsyncAHK [Any ]] = None
574
572
) -> AsyncFutureResult [
575
573
Union [None , Tuple [int , int ], int , str , bool , AsyncWindow , List [AsyncWindow ], List [AsyncControl ]]
576
- ]:
577
- return NotImplemented
574
+ ]: ...
578
575
579
576
@abstractmethod
580
577
def send_nonblocking (
581
578
self , request : RequestMessage , engine : Optional [AsyncAHK [Any ]] = None
582
- ) -> FutureResult [Union [None , Tuple [int , int ], int , str , bool , AsyncWindow , List [AsyncWindow ], List [AsyncControl ]]]:
583
- return NotImplemented
579
+ ) -> FutureResult [
580
+ Union [None , Tuple [int , int ], int , str , bool , AsyncWindow , List [AsyncWindow ], List [AsyncControl ]]
581
+ ]: ...
584
582
585
583
586
584
class AsyncDaemonProcessTransport (AsyncTransport ):
0 commit comments