-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: database binds failing because no config attribute
- Loading branch information
1 parent
f06064e
commit 3ed6c68
Showing
2 changed files
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = "[email protected]" }] | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,5 @@ def __init__( | |
|
||
if database_binds: | ||
self.IMP_DATABASE_BINDS = database_binds | ||
else: | ||
self.IMP_DATABASE_BINDS = [] |