We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30cb30d commit de9a5b1Copy full SHA for de9a5b1
Pipfile
@@ -24,4 +24,4 @@ python_version = "3.8"
24
25
[scripts]
26
dev_app = "uvicorn app.main:APP --reload"
27
-app = "uvicorn app.main:APP"
+app = "uvicorn app.main:APP"
app/__init__.py
@@ -1,4 +1,4 @@
1
# See PEP396.
2
__version__ = '2.0'
3
4
-from .core import create_app
+from .core import create_app
app/core.py
@@ -21,4 +21,4 @@ def create_app():
21
app.register_blueprint(routes.api_v2)
22
23
# Return created app.
- return app
+ return app
0 commit comments