We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87ba52f commit 7bf67f6Copy full SHA for 7bf67f6
1 file changed
examples/two_factor_auth.py
@@ -8,8 +8,8 @@ def auth_handler():
8
9
# Код двухфакторной аутентификации
10
key = input("Enter authentication code: ")
11
- # Если: 1 - сохранить, 0 - не сохранять.
12
- remember_device = 1
+ # Если: True - сохранить, False - не сохранять.
+ remember_device = True
13
14
return key, remember_device
15
0 commit comments