Initial YakPanel commit

This commit is contained in:
Niranjan
2026-04-07 02:04:22 +05:30
commit 2826d3e7f3
5359 changed files with 1390724 additions and 0 deletions

10
class/pyotp/compat.py Normal file
View File

@@ -0,0 +1,10 @@
from __future__ import absolute_import, division, print_function, unicode_literals
import sys
USING_PYTHON2 = True if sys.version_info < (3, 0) else False
if USING_PYTHON2:
str = unicode # noqa
else:
str = str