From 10a1b16016985a8d34472b2375945a3b896d11a4 Mon Sep 17 00:00:00 2001 From: Ross Mountjoy Date: Sat, 8 Feb 2020 17:34:46 -0500 Subject: [PATCH] fixed critical bug --- dashmachine/user_system/forms.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/dashmachine/user_system/forms.py b/dashmachine/user_system/forms.py index adbfd23..73d12cd 100644 --- a/dashmachine/user_system/forms.py +++ b/dashmachine/user_system/forms.py @@ -1,9 +1,6 @@ from flask_wtf import FlaskForm from wtforms import StringField, PasswordField, BooleanField, SelectField from wtforms.validators import DataRequired, Length -from dashmachine.settings_system.models import Settings - -settings_db = Settings.query.first() class UserForm(FlaskForm):