Skip to content

Commit

Permalink
Update tags params types with None (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
FionaDL authored Mar 5, 2024
1 parent ec4d3c5 commit 6763baa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions noko_client/schemas/tags_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 6763baa

Please sign in to comment.