diff --git a/cg/clients/freshdesk/models.py b/cg/clients/freshdesk/models.py index 83d602cd6b..b023df874a 100644 --- a/cg/clients/freshdesk/models.py +++ b/cg/clients/freshdesk/models.py @@ -20,7 +20,7 @@ class TicketCreate(BaseModel): type: str | None = None custom_fields: dict[str, str | int | float | None] = Field(default_factory=dict) - def to_multipart_data(self) -> list[Tuple[str, Union[str, int, bytes]]]: + def to_multipart_data(self) -> list[Tuple[str, str | int | bytes]]: """Custom converter to multipart form data.""" multipart_data = []