Skip to content

Commit

Permalink
[#513] format changed files
Browse files Browse the repository at this point in the history
  • Loading branch information
Sonny Bakker committed Jan 15, 2025
1 parent 2caaf50 commit d7a67b9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/objecttypes/api/v2/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,27 +44,27 @@ def perform_destroy(self, instance):
@extend_schema_view(
retrieve=extend_schema(
operation_id="objectversion_read",
description=_("Retrieve an OBJECTTYPE with the given version.")
description=_("Retrieve an OBJECTTYPE with the given version."),
),
list=extend_schema(
operation_id="objectversion_list",
description=_("Retrieve all versions of an OBJECTTYPE")
description=_("Retrieve all versions of an OBJECTTYPE"),
),
create=extend_schema(
operation_id="objectversion_create",
description=_("Create an OBJECTTYPE with the given version.")
description=_("Create an OBJECTTYPE with the given version."),
),
destroy=extend_schema(
operation_id="objectversion_delete",
description=_("Destroy the given OBJECTTYPE.")
description=_("Destroy the given OBJECTTYPE."),
),
update=extend_schema(
operation_id="objectversion_update",
description=_("Update an OBJECTTYPE with the given version.")
description=_("Update an OBJECTTYPE with the given version."),
),
partial_update=extend_schema(
operation_id="objectversion_partial_update",
description=_("Partially update an OBJECTTYPE with the given version.")
description=_("Partially update an OBJECTTYPE with the given version."),
),
)
class ObjectVersionViewSet(NestedViewSetMixin, viewsets.ModelViewSet):
Expand Down

0 comments on commit d7a67b9

Please sign in to comment.