From 63e40be8047be7b0e86c4736a9c6b4792822cd6c Mon Sep 17 00:00:00 2001 From: Evgeniy Blinov Date: Wed, 20 Dec 2023 02:10:54 +0300 Subject: [PATCH] lint ignore --- cantok/tokens/abstract_token.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cantok/tokens/abstract_token.py b/cantok/tokens/abstract_token.py index 4c36fde..fa9321f 100644 --- a/cantok/tokens/abstract_token.py +++ b/cantok/tokens/abstract_token.py @@ -28,7 +28,7 @@ def __await__(self): def send(self, value: Any) -> None: raise SynchronousWaitingError() - def throw(self, value: Any) -> Any: + def throw(self, value: Any) -> Any: # type: ignore[override] pass def close(self) -> Any: