Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
judtinzhang committed Sep 10, 2023
1 parent 5524422 commit 5e419b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/dining/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from rest_framework.response import Response
from rest_framework.views import APIView

from dining.api_wrapper import DiningAPIWrapper, APIError
from dining.api_wrapper import APIError, DiningAPIWrapper
from dining.models import DiningMenu, Venue
from dining.serializers import DiningMenuSerializer

Expand All @@ -28,6 +28,7 @@ def get(self, request):
except APIError as e:
return Response({"error": str(e)}, status=400)


class Menus(generics.ListAPIView):
"""
GET: returns list of menus, defaulted to all objects within the week,
Expand Down

0 comments on commit 5e419b8

Please sign in to comment.