Removed any errors by ignoring them

This commit is contained in:
2025-04-16 08:59:03 +02:00
parent f53d50ef7a
commit 80a39f5c89
3 changed files with 10 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
from flask import Blueprint, render_template, redirect, url_for, flash
from flask import Blueprint, render_template, redirect, url_for
# from application import db
from application.auth.models import User
@@ -36,5 +36,4 @@ def login():
@login_required
def logout():
logout_user()
flash("Je bent nu uitgelogd.")
return redirect(url_for("index"))