From c740242c3f1b4aa4f4c4b9b370e61dc83449fcd9 Mon Sep 17 00:00:00 2001 From: SantaSpeen Date: Wed, 2 Apr 2025 18:17:36 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B8=20=D0=B2=20=D1=85=D0=B0?= =?UTF-8?q?=D0=BD=D0=B4=D0=BB=D0=B5=D1=80=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- anixart/auth/error_handler.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/anixart/auth/error_handler.py b/anixart/auth/error_handler.py index 83b45f8..e8f9064 100644 --- a/anixart/auth/error_handler.py +++ b/anixart/auth/error_handler.py @@ -2,9 +2,8 @@ from enum import IntEnum class AnixartAuthErrors(IntEnum): - """ Error codes for AnixartApi authentication.""" - INCORRECT_LOGIN = 1 - INCORRECT_PASSWORD = 2 + INCORRECT_LOGIN = 2 + INCORRECT_PASSWORD = 3 def errors_handler(error):