Skip to content

Commit e9aa459

Browse files
committed
fix ci.
1 parent 0563a57 commit e9aa459

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/stringdatadeque/encryptedstringdeque.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
from collections import deque
66
from collections.abc import Callable
77
from functools import partial
8+
from typing import Any
9+
from typing import ClassVar
810
from typing import Self
911
from typing import cast
1012

@@ -123,7 +125,7 @@ class RSAMessage:
123125
"""
124126

125127
__slots__ = ("_ciphertext", "_enc_session_key", "_nonce", "_tag")
126-
__hash__ = None
128+
__hash__: ClassVar[Any] = None
127129

128130
enc_session_key: str | bytes = Base64Encoded("_enc_session_key")
129131
nonce: str | bytes = Base64Encoded("_nonce")

0 commit comments

Comments
 (0)