Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Make plural name optional for Quantity Units #272

Merged
merged 1 commit into from
Oct 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pygrocy/grocy_api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class RecipeDetailsResponse(BaseModel):
class QuantityUnitData(BaseModel):
id: int
name: str
name_plural: str
name_plural: Optional[str] = None
description: Optional[str] = None
row_created_timestamp: datetime

Expand Down
Loading