1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-04-15 23:47:24 +02:00

Fixed E721 (type-comparison): Use is and is not for type comparisons, or isinstance() for isinstance checks

This commit is contained in:
Teal Dulcet
2023-12-23 05:32:34 -08:00
committed by Joshua Tauberer
parent f0377dd59e
commit cacf6d2006
2 changed files with 2 additions and 2 deletions

View File

@@ -68,7 +68,7 @@ def disable_mfa(email, mfa_id, env):
return c.rowcount > 0
def validate_totp_secret(secret):
if type(secret) != str or secret.strip() == "":
if not isinstance(secret, str) or secret.strip() == "":
msg = "No secret provided."
raise ValueError(msg)
if len(secret) != 32: