summaryrefslogtreecommitdiff
path: root/otp2289/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'otp2289/__init__.py')
-rw-r--r--otp2289/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/otp2289/__init__.py b/otp2289/__init__.py
index d2f6386..82c1413 100644
--- a/otp2289/__init__.py
+++ b/otp2289/__init__.py
@@ -3,6 +3,7 @@
3 3
4from .generator import (OTP_ALGO_MD5, 4from .generator import (OTP_ALGO_MD5,
5 OTP_ALGO_SHA1, 5 OTP_ALGO_SHA1,
6 OTPChallengeException,
6 OTPGenerator, 7 OTPGenerator,
7 OTPGeneratorException) 8 OTPGeneratorException)
8 9
@@ -24,5 +25,6 @@ VERSION = tuple(map(int_or_str, __version__.split('.')))
24 25
25__all__ = ['OTP_ALGO_MD5', 26__all__ = ['OTP_ALGO_MD5',
26 'OTP_ALGO_SHA1', 27 'OTP_ALGO_SHA1',
28 'OTPChallengeException',
27 'OTPGenerator', 29 'OTPGenerator',
28 'OTPGeneratorException'] 30 'OTPGeneratorException']