Skip to content

Commit de9a5b1

Browse files
committed
end of file newlines
1 parent 30cb30d commit de9a5b1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ python_version = "3.8"
2424

2525
[scripts]
2626
dev_app = "uvicorn app.main:APP --reload"
27-
app = "uvicorn app.main:APP"
27+
app = "uvicorn app.main:APP"

app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# See PEP396.
22
__version__ = '2.0'
33

4-
from .core import create_app
4+
from .core import create_app

app/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ def create_app():
2121
app.register_blueprint(routes.api_v2)
2222

2323
# Return created app.
24-
return app
24+
return app

0 commit comments

Comments
 (0)