aboutsummaryrefslogtreecommitdiff
path: root/rsa/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'rsa/common.py')
-rw-r--r--rsa/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsa/common.py b/rsa/common.py
index c5b647d..e7df21d 100644
--- a/rsa/common.py
+++ b/rsa/common.py
@@ -18,7 +18,7 @@ import typing
class NotRelativePrimeError(ValueError):
- def __init__(self, a, b, d, msg=''):
+ def __init__(self, a: int, b: int, d: int, msg: str = '') -> None:
super().__init__(msg or "%d and %d are not relatively prime, divider=%i" % (a, b, d))
self.a = a
self.b = b