Skip to content

Commit

Permalink
corrected flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Naz-iv committed Dec 17, 2023
1 parent b1d26db commit 0d300d9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions core/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
include("payment_service.urls", namespace="payment_service")),

path("api/doc/", SpectacularAPIView.as_view(), name="schema"),
path("api/doc/swagger/", SpectacularSwaggerView.as_view(url_name="schema"), name="swagger"),
path("api/doc/redoc/", SpectacularRedocView.as_view(url_name="schema"), name="redoc"),
path("api/doc/swagger/",
SpectacularSwaggerView.as_view(url_name="schema"), name="swagger"),
path("api/doc/redoc/",
SpectacularRedocView.as_view(url_name="schema"), name="redoc"),
]

0 comments on commit 0d300d9

Please sign in to comment.