Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HansKallekleiv committed Sep 3, 2024
1 parent 1ddd468 commit 895a4d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend_py/primary/primary/routers/pvt/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ async def table_data(
if table_schema is None:
raise HTTPException(status_code=404, detail="PVT table not found")

sumo = await access.get_realization_table_async(table_schema, realization=realization)
sumo_table_data = await access.get_realization_table_async(table_schema, realization=realization)

pvt_data = pvt_dataframe_to_api_data(sumo.to_pandas())
pvt_data = pvt_dataframe_to_api_data(sumo_table_data.to_pandas())

return pvt_data

Expand Down

0 comments on commit 895a4d5

Please sign in to comment.