This website requires JavaScript.
Explore
Help
Sign In
root
/
flask
mirror of
https://github.com/pallets/flask.git
Watch
1
Star
0
Fork
You've already forked flask
0
Code
Issues
Actions
1
Packages
Projects
Releases
Wiki
Activity
8f2bc008ad
flask
/
tests
/
test_apps
/
cliapp
/
multiapp.py
5 lines
67 B
Python
Raw
Normal View
History
Unescape
Escape
Forward ported CLI tests from Flask-CLI and fixed a bug with the CLI's name. (#1806) * Forward port the CLI tests from Flask-CLI. * Make sure the parameter passed to the CLI's AppGroup is the app's name, not the app itself.
2016-05-17 01:36:55 +08:00
from
flask
import
Flask
Reformat with black https://github.com/python/black
2019-05-07 03:39:41 +08:00
app1
=
Flask
(
"
app1
"
)
app2
=
Flask
(
"
app2
"
)