From d3a796428d9eac9ebe2f35329540dff34d7fb06b Mon Sep 17 00:00:00 2001 From: Hui Lan Date: Thu, 3 Nov 2022 22:21:34 +0800 Subject: [PATCH] account_service.py: module re is no longer necessary. --- app/account_service.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/account_service.py b/app/account_service.py index 2307686..4aafe67 100644 --- a/app/account_service.py +++ b/app/account_service.py @@ -1,6 +1,5 @@ from flask import * from Login import check_username_availability, verify_user, add_user, get_expiry_date, change_password, UserName, WarningMessage -import re # 初始化蓝图 accountService = Blueprint("accountService", __name__)