Skip to content

Commit c1410cf

Browse files
committed
refactor!: rename rfc files to private filenames
1 parent 771382e commit c1410cf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/otpauth/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from .core import SupportedAlgorithms
2-
from .rfc4226 import HOTP, generate_hotp
3-
from .rfc6238 import TOTP, generate_totp
2+
from ._rfc4226 import HOTP, generate_hotp
3+
from ._rfc6238 import TOTP, generate_totp
44

55

66
__author__ = "Hsiaoming Yang <[email protected]>"
7-
__homepage__ = "https://github.com/lepture/otpauth"
7+
__homepage__ = "https://otp.authlib.org/"
88
__version__ = "2.1.1"
99

1010
__all__ = [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import time
33
import hmac
44
from .core import OTP, SupportedAlgorithms
5-
from .rfc4226 import generate_hotp
5+
from ._rfc4226 import generate_hotp
66

77

88
class TOTP(OTP):

0 commit comments

Comments
 (0)