Skip to content
Snippets Groups Projects
Commit 10768fba authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Remove wrong type annotations

parent 15e897f0
No related branches found
No related tags found
No related merge requests found
...@@ -14,12 +14,12 @@ assets: flask_assets.Environment = flask_assets.Environment() ...@@ -14,12 +14,12 @@ assets: flask_assets.Environment = flask_assets.Environment()
db: SQLAlchemy = SQLAlchemy() db: SQLAlchemy = SQLAlchemy()
hashids: Hashids = Hashids() hashids: Hashids = Hashids()
login: LoginManager = LoginManager() login: LoginManager = LoginManager()
login.login_view: str = 'auth.login' login.login_view = 'auth.login'
login.login_message: str = 'Please log in to access this page.' login.login_message = 'Please log in to access this page.'
mail: Mail = Mail() mail: Mail = Mail()
migrate: Migrate = Migrate() migrate: Migrate = Migrate()
paranoid: Paranoid = Paranoid() paranoid: Paranoid = Paranoid()
paranoid.redirect_view: str = '/' paranoid.redirect_view = '/'
socketio: SocketIO = SocketIO() socketio: SocketIO = SocketIO()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment