Skip to content

Commit ae3bc72

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

5 files changed

Lines changed: 2 additions & 4 deletions

File tree

flemi/api/auth/views.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from .schemas import LoginSchema
1313
from .schemas import RegisterSchema
1414

15-
1615
# create authentication blueprint for API v4
1716
auth_bp = APIBlueprint("auth", __name__, url_prefix="/auth")
1817

flemi/api/me/views.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from .schemas import BasicProfileEditSchema
99
from .schemas import PrivateUserOutSchema
1010

11-
1211
me_bp = APIBlueprint("me", __name__, url_prefix="/me")
1312

1413

flemi/extensions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from flask_migrate import Migrate
44
from flask_sqlalchemy import SQLAlchemy
55

6-
76
db = SQLAlchemy()
87
migrate = Migrate()
98
auth = HTTPTokenAuth()

flemi/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
MIT License
33
Copyright (c) 2020 Andy Zhou
44
"""
5+
56
import hashlib
67
import os
78
from datetime import datetime
@@ -18,7 +19,6 @@
1819
from .extensions import db
1920
from .shop_items import items
2021

21-
2222
group_user_table = db.Table(
2323
"group_user",
2424
db.Column("user_id", db.Integer, db.ForeignKey("user.id")),

flemi/settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
MIT License
33
Copyright (c) 2020 Andy Zhou
44
"""
5+
56
import os
67
from os.path import abspath
78
from os.path import dirname

0 commit comments

Comments
 (0)