Skip to content

Commit

Permalink
Remove added alias
Browse files Browse the repository at this point in the history
  • Loading branch information
ittuann committed Jun 24, 2024
1 parent 2a76621 commit d7d96e2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ def convert_to_pandas_representation(self) -> Dict[str, Union[List[str], List[Li

total: StrictInt
headers: List[StrictStr]
all_data_series: List[DataSeries] = Field(alias="allDataSeries")
all_data_series: List[DataSeries]
query_status: Literal["OK", "TOO_MUCH_DATA"] = Field(alias="spQueryStatus")
source_index: StrictInt = Field(alias="sourceIndex")
for_id: Optional[str] = Field(alias="forId")
last_timestamp: StrictInt = Field(alias="lastTimestamp")
source_index: StrictInt
for_id: Optional[str]
last_timestamp: StrictInt

def to_pandas(self) -> pd.DataFrame:
"""Returns the data lake series in representation of a Pandas Dataframe.
Expand Down

0 comments on commit d7d96e2

Please sign in to comment.