summaryrefslogtreecommitdiff
path: root/rsa/core.py
diff options
context:
space:
mode:
authorAndrey Semakin <and-semakin@ya.ru>2019-11-04 18:35:23 +0500
committerSybren A. Stüvel <sybren@stuvel.eu>2020-06-03 13:43:27 +0200
commitae1a906952557f616706f79c66030fd812e48cdf (patch)
tree8b5d9f4051d72936f0b6fb4e2048d20282a34ab4 /rsa/core.py
parent1473cb8599c44cffad56cecbe32c467d64f00247 (diff)
downloadrsa-git-ae1a906952557f616706f79c66030fd812e48cdf.tar.gz
Add more type hints
Diffstat (limited to 'rsa/core.py')
-rw-r--r--rsa/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsa/core.py b/rsa/core.py
index d6e146f..23032e3 100644
--- a/rsa/core.py
+++ b/rsa/core.py
@@ -19,7 +19,7 @@ mathematically on integers.
"""
-def assert_int(var: int, name: str):
+def assert_int(var: int, name: str) -> None:
if isinstance(var, int):
return