From 10768fbaa4aa918cb90fe099176c4afa4a549d61 Mon Sep 17 00:00:00 2001
From: Patrick Jentsch
Date: Thu, 17 Feb 2022 09:06:18 +0100
Subject: [PATCH] Remove wrong type annotations
---
app/__init__.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/app/__init__.py b/app/__init__.py
index 41122eb3..46ca4533 100644
--- a/app/__init__.py
+++ b/app/__init__.py
@@ -14,12 +14,12 @@ assets: flask_assets.Environment = flask_assets.Environment()
db: SQLAlchemy = SQLAlchemy()
hashids: Hashids = Hashids()
login: LoginManager = LoginManager()
-login.login_view: str = 'auth.login'
-login.login_message: str = 'Please log in to access this page.'
+login.login_view = 'auth.login'
+login.login_message = 'Please log in to access this page.'
mail: Mail = Mail()
migrate: Migrate = Migrate()
paranoid: Paranoid = Paranoid()
-paranoid.redirect_view: str = '/'
+paranoid.redirect_view = '/'
socketio: SocketIO = SocketIO()