remove unnecessary login print

This commit is contained in:
svlandeg 2024-08-23 17:00:35 +02:00
parent 91576992dd
commit 9413db6bd9
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ from functools import wraps
def login_required(func):
@wraps(func)
def wrapper(*args, **kwargs):
print("login")
# login functionality could come here
return func(*args, **kwargs)
return wrapper