Skip to content

Commit

Permalink
Change column titles
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmbland committed Nov 3, 2023
1 parent 7d9a531 commit f903f73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/figures.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def generate_intraday_market_bids_fig(df: pd.DataFrame) -> go.Figure:
intraday_market_bids_fig = go.Figure()

else:
columns = ["Total Generation", "Total Demand"]
columns = ["Total Generation", "Total Demand"] # dummy data
intraday_market_bids_fig = go.Figure(
data=[
go.Table(
Expand Down Expand Up @@ -263,7 +263,7 @@ def generate_dsr_bids_fig(df: pd.DataFrame) -> go.Figure:
dsr_bids_fig = go.Figure()

else:
columns = ["Total Generation", "Total Demand"]
columns = ["Amount", "Cost"] # dummy data
dsr_bids_fig = go.Figure(
data=[
go.Table(
Expand Down

0 comments on commit f903f73

Please sign in to comment.