Skip to content

Commit e766a04

Browse files
committed
Update tags params types with None
1 parent ec4d3c5 commit e766a04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

noko_client/schemas/tags_parameters.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99

1010

1111
class GetNokoTagsParameters(BaseModel):
12-
"""Process and validate parameters to make GET requests to the `entries` endpoint."""
12+
"""Process and validate parameters to make GET requests to the `tags` endpoint."""
1313

14-
name: str | None
15-
billable: str | bool | None
14+
name: str | None = None
15+
billable: str | bool | None = None
1616

1717
_format_booleans = field_validator("billable")(format_booleans)
1818

0 commit comments

Comments
 (0)