Skip to content

Commit 41a2f15

Browse files
authored
🎨 Format fixes (#159)
* 📝 Update release notes * 🎨 Update format and structure
1 parent 7b76887 commit 41a2f15

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

{{cookiecutter.project_slug}}/backend/app/app/crud/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from .crud_item import item # noqa: F401
2-
from .crud_user import user # noqa: F401
1+
from .crud_item import item
2+
from .crud_user import user
33

44
# For a new basic set of CRUD operations you could just do
55

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from pydantic import BaseModel
44

5-
from .user import User # noqa: F401
6-
75

86
# Shared properties
97
class ItemBase(BaseModel):

{{cookiecutter.project_slug}}/backend/app/app/tests/api/api_v1/test_items.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
from app.core.config import settings
55
from app.tests.utils.item import create_random_item
6-
from app.tests.utils.user import create_random_user # noqa: F401
76
from app.tests.utils.utils import get_server_api
87

98

{{cookiecutter.project_slug}}/backend/app/scripts/lint.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ set -x
55
mypy app
66
black app --check
77
isort --recursive --check-only app
8-
vulture app --min-confidence 70
98
flake8

0 commit comments

Comments
 (0)