29
29
if sys .version_info [:2 ] >= (3 , 8 ):
30
30
from typing import Literal
31
31
else :
32
- from typing_extensions import Literal
32
+ from typing_extensions import Literal # pragma: no cover
33
33
34
34
35
35
class Client :
@@ -385,7 +385,7 @@ def execute(
385
385
get_execution_result : Literal [False ] = ...,
386
386
** kwargs ,
387
387
) -> Dict [str , Any ]:
388
- ...
388
+ ... # pragma: no cover
389
389
390
390
@overload
391
391
def execute (
@@ -399,7 +399,7 @@ def execute(
399
399
get_execution_result : Literal [True ],
400
400
** kwargs ,
401
401
) -> ExecutionResult :
402
- ...
402
+ ... # pragma: no cover
403
403
404
404
def execute (
405
405
self ,
@@ -576,7 +576,7 @@ def subscribe(
576
576
get_execution_result : Literal [False ] = ...,
577
577
** kwargs ,
578
578
) -> AsyncGenerator [Dict [str , Any ], None ]:
579
- ...
579
+ ... # pragma: no cover
580
580
581
581
@overload
582
582
def subscribe (
@@ -590,7 +590,7 @@ def subscribe(
590
590
get_execution_result : Literal [True ],
591
591
** kwargs ,
592
592
) -> AsyncGenerator [ExecutionResult , None ]:
593
- ...
593
+ ... # pragma: no cover
594
594
595
595
async def subscribe (
596
596
self ,
@@ -734,7 +734,7 @@ async def execute(
734
734
get_execution_result : Literal [False ] = ...,
735
735
** kwargs ,
736
736
) -> Dict [str , Any ]:
737
- ...
737
+ ... # pragma: no cover
738
738
739
739
@overload
740
740
async def execute (
@@ -748,7 +748,7 @@ async def execute(
748
748
get_execution_result : Literal [True ],
749
749
** kwargs ,
750
750
) -> ExecutionResult :
751
- ...
751
+ ... # pragma: no cover
752
752
753
753
async def execute (
754
754
self ,
0 commit comments