Skip to content

Commit

Permalink
fix: database binds failing because no config attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
CheeseCake87 committed Aug 13, 2024
1 parent f06064e commit 3ed6c68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "flask-imp"
version = "5.3.0"
version = "5.3.1"
description = 'A Flask auto importer that allows your Flask apps to grow big.'
authors = [{ name = "David Carmichael", email = "david@uilix.com" }]
readme = "README.md"
Expand Down
2 changes: 2 additions & 0 deletions src/flask_imp/config/imp_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ def __init__(

if database_binds:
self.IMP_DATABASE_BINDS = database_binds
else:
self.IMP_DATABASE_BINDS = []

0 comments on commit 3ed6c68

Please sign in to comment.