From 1bdc710b7752b36e20cc75de85768e4fbc86ee17 Mon Sep 17 00:00:00 2001 From: martinkersner <2312761+martinkersner@users.noreply.github.com> Date: Sun, 5 Jul 2026 10:20:21 +0000 Subject: [PATCH] chore: sync generated _endpoints.py with backend spec --- datamaxi/_responses.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/datamaxi/_responses.py b/datamaxi/_responses.py index 3460815..0140905 100644 --- a/datamaxi/_responses.py +++ b/datamaxi/_responses.py @@ -245,8 +245,6 @@ class FundingRateLatestResponse: i: int = 0 # Specifies the token id id: str = "" - # Specifies the processed at - p: int = 0 # Specifies the quote q: str = "" # Specifies the symbol @@ -261,7 +259,6 @@ def from_dict(cls, data: dict) -> FundingRateLatestResponse: f=data.get("f", 0.0), i=data.get("i", 0), id=data.get("id", ""), - p=data.get("p", 0), q=data.get("q", ""), s=data.get("s", ""), )