Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MyPyDavid committed Nov 22, 2023
1 parent 00aee8c commit 98b7154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rdmo/management/viewsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class MetaViewSet(viewsets.ViewSet):
permission_classes = (IsAuthenticated, )

def list(self, request, *args, **kwargs):
return Response({k: get_model_field_meta(val) for k, val in RDMO_MODEL_PATH_MAPPER})
return Response({k: get_model_field_meta(val) for k, val in RDMO_MODEL_PATH_MAPPER.items()})


class UploadViewSet(viewsets.ViewSet):
Expand Down

0 comments on commit 98b7154

Please sign in to comment.