diff --git a/app/views.py b/app/views.py index 4202b21..6f990ba 100644 --- a/app/views.py +++ b/app/views.py @@ -3,7 +3,6 @@ from django.views.decorators.http import require_http_methods from drf_yasg.openapi import Contact from drf_yasg.openapi import Info -from drf_yasg.utils import swagger_auto_schema from drf_yasg.views import get_schema_view from rest_framework.permissions import AllowAny @@ -21,6 +20,5 @@ @require_http_methods(["GET"]) -@swagger_auto_schema(method='get') def health(request: HttpRequest): return HttpResponse(status=200)