Skip to content

Commit

Permalink
no cover pragmas
Browse files Browse the repository at this point in the history
  • Loading branch information
pomponchik committed Feb 2, 2024
1 parent af55325 commit 1cf2b06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cantok/tokens/abstract_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ def send(self, value: Any) -> Any:
return self.coroutine.send(value)

def throw(self, exception_type: Any, value: Optional[Any] = None, traceback: Optional[TracebackType] = None) -> Any:
pass
pass # pragma: no cover

def close(self) -> None:
pass
pass # pragma: no cover

@staticmethod
def sync_wait(step: Union[int, float], flags: Dict[str, bool], token_for_wait: 'AbstractToken', token_for_check: 'AbstractToken', wrapped_coroutine: Coroutine) -> None: # type: ignore[type-arg]
Expand Down

0 comments on commit 1cf2b06

Please sign in to comment.