We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQLAlchemy.__repr__
KeyError
from flask import Flask from flask_sqlalchemy import SQLAlchemy db = SQLAlchemy() app = Flask(__name__) app.config['SQLALCHEMY_BINDS'] = {'x': 'sqlite:///:memory:'} db.init_app(app) with app.app_context(): print(db) # KeyError: None
Environment:
The text was updated successfully, but these errors were encountered:
Thanks for the report! I've proposed a fix at https://github.com/pallets-eco/flask-sqlalchemy/pull/1296/files
Sorry, something went wrong.
pamelafox
Successfully merging a pull request may close this issue.
Environment:
The text was updated successfully, but these errors were encountered: