Skip to content

Commit 610694a

Browse files
committed
Formated files with black command.
1 parent 37600b2 commit 610694a

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/backend/urls.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
from django.contrib import admin
22
from django.urls import include, path
33
from drf_spectacular.views import SpectacularAPIView, SpectacularSwaggerView
4-
from rest_framework_simplejwt.views import (TokenObtainPairView,
5-
TokenRefreshView)
4+
from rest_framework_simplejwt.views import TokenObtainPairView, TokenRefreshView
65

76
urlpatterns = [
87
path("admin/", admin.site.urls),

src/items/tests/test_tasks.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
import pytest
66

77
from items.models import Item
8-
from items.tasks import (hourly_external_price_sync,
9-
simulate_external_price_sync_for_item)
8+
from items.tasks import (
9+
hourly_external_price_sync,
10+
simulate_external_price_sync_for_item,
11+
)
1012
from items.utils.price_sync import sync_all_items
1113

1214

src/items/views.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77

88
from .models import Item
99
from .serializers import ItemSerializer
10-
from .tasks import (hourly_external_price_sync,
11-
simulate_external_price_sync_for_item)
10+
from .tasks import hourly_external_price_sync, simulate_external_price_sync_for_item
1211

1312

1413
class ItemViewSet(viewsets.ModelViewSet):

0 commit comments

Comments
 (0)