Skip to content

Commit

Permalink
Fix config loading order to initialize SQLAlchemy properly
Browse files Browse the repository at this point in the history
  • Loading branch information
recrsn committed Jan 25, 2021
1 parent e787ed5 commit 5218be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snowflake/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

app = Flask(__name__)

db.init_app(app)
settings.init_app(app)
db.init_app(app)
marshmallow.init_app(app)

login_manager = LoginManager()
Expand Down

0 comments on commit 5218be5

Please sign in to comment.