Skip to content

Commit c26828c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 14cc572 commit c26828c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/flask/app.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818

1919
db = SQLAlchemy(engine_options={"echo": True})
2020
app = Flask(__name__)
21-
app.config[
22-
"SQLALCHEMY_DATABASE_URI"
23-
] = "sqlite:////tmp/example.db?check_same_thread=False"
21+
app.config["SQLALCHEMY_DATABASE_URI"] = (
22+
"sqlite:////tmp/example.db?check_same_thread=False"
23+
)
2424
db.init_app(app)
2525

2626

0 commit comments

Comments
 (0)