We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7be7cbf commit 07c3b11Copy full SHA for 07c3b11
arc4-stubs/__init__.pyi
@@ -1,6 +1,8 @@
1
-class ARC4(object):
2
- def __init__(self, key: bytes): ...
+from typing_extensions import final
3
4
- def encrypt(self, data: bytes) -> bytes: ...
5
+@final
+class ARC4(object):
6
+ def __init__(self, key: bytes) -> None: ...
7
+ def encrypt(self, data: bytes) -> bytes: ...
8
def decrypt(self, data: bytes) -> bytes: ...
0 commit comments