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

Commit

Permalink
Make plural name optional for Quantity Units (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
vorostamas authored Oct 15, 2023
1 parent e85f1f0 commit 7203cf9
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 7203cf9

Please sign in to comment.