diff --git a/src/argilla/client/feedback/schemas/responses.py b/src/argilla/client/feedback/schemas/responses.py index 49ef26c416..0de48e256d 100644 --- a/src/argilla/client/feedback/schemas/responses.py +++ b/src/argilla/client/feedback/schemas/responses.py @@ -92,9 +92,5 @@ class Config: def to_server_payload(self) -> Dict[str, Any]: """Method that will be used to create the payload that will be sent to Argilla to create a `ResponseSchema` for a `FeedbackRecord`.""" - payload = { - "user_id": self.user_id, - "status": self.status, - **self.dict(exclude_unset=True, include={"values"}) - } + payload = {"user_id": self.user_id, "status": self.status, **self.dict(exclude_unset=True, include={"values"})} return payload