From 2760f198d06164078bccd478049fa8f233d7b328 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 27 Jul 2024 11:35:08 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- nativeauthenticator/handlers.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nativeauthenticator/handlers.py b/nativeauthenticator/handlers.py index 7c2ab90..7092cdc 100644 --- a/nativeauthenticator/handlers.py +++ b/nativeauthenticator/handlers.py @@ -168,7 +168,9 @@ async def post(self): user_info = { "username": self.get_body_argument("username", strip=False), "password": self.get_body_argument("signup_password", strip=False), - "password_confirmation": self.get_body_argument("signup_password_confirmation", strip=False), + "password_confirmation": self.get_body_argument( + "signup_password_confirmation", strip=False + ), "email": self.get_body_argument("email", "", strip=False), "has_2fa": bool(self.get_body_argument("2fa", "", strip=False)), }