From e766a04f845da39fc7f04625821a24b047c36b1a Mon Sep 17 00:00:00 2001 From: Fiona Date: Tue, 5 Mar 2024 10:40:59 -0500 Subject: [PATCH] Update tags params types with None --- noko_client/schemas/tags_parameters.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/noko_client/schemas/tags_parameters.py b/noko_client/schemas/tags_parameters.py index deffc51..505d3eb 100644 --- a/noko_client/schemas/tags_parameters.py +++ b/noko_client/schemas/tags_parameters.py @@ -9,10 +9,10 @@ class GetNokoTagsParameters(BaseModel): - """Process and validate parameters to make GET requests to the `entries` endpoint.""" + """Process and validate parameters to make GET requests to the `tags` endpoint.""" - name: str | None - billable: str | bool | None + name: str | None = None + billable: str | bool | None = None _format_booleans = field_validator("billable")(format_booleans)