Skip to content

Commit b3847b4

Browse files
committed
🔥 Remove character encoding, unnecessary in 3.x
1 parent f9c08f6 commit b3847b4

File tree

15 files changed

+0
-28
lines changed

15 files changed

+0
-28
lines changed

{{cookiecutter.project_slug}}/backend/app/app/api/api_v1/endpoints/role.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
# Import standard library modules
42

53
# Import installed modules

{{cookiecutter.project_slug}}/backend/app/app/api/api_v1/endpoints/user.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
# Import standard library modules
42

53
# Import installed modules

{{cookiecutter.project_slug}}/backend/app/app/api/api_v1/endpoints/utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
# Import installed modules
42
# Import installed packages
53
from webargs import fields

{{cookiecutter.project_slug}}/backend/app/app/core/errors.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from flask import jsonify
42
from ..main import app
53

{{cookiecutter.project_slug}}/backend/app/app/db/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Import all the models, so that Base has them before being
32
# imported by Alembic or used by Flask
43
from app.db.base_class import Base # noqa

{{cookiecutter.project_slug}}/backend/app/app/main.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
# Import installed packages
42
from flask import Flask
53

{{cookiecutter.project_slug}}/backend/app/app/models/role.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
# Import standard library packages
42
from datetime import datetime
53

{{cookiecutter.project_slug}}/backend/app/app/models/user.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
# Import standard library packages
42
from datetime import datetime
53

{{cookiecutter.project_slug}}/backend/app/app/schemas/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
# Import standard library packages
42

53
# Import installed packages

{{cookiecutter.project_slug}}/backend/app/app/schemas/msg.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
# Import standard library packages
42

53
# Import installed packages

0 commit comments

Comments
 (0)