Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
nesnoj committed Oct 19, 2023
1 parent 97f3257 commit 5b7c04d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions digiplan/map/calculations.py
Original file line number Diff line number Diff line change
Expand Up @@ -618,10 +618,14 @@ def electricity_overview_from_user(simulation_id: int) -> pd.Series:
]
demand.index = demand.index.get_level_values(1)

# electricity_heat_production_result = electricity_heat_demand(simulation_id)
# demand["ABW-electricity-demand_hh"] += electricity_heat_production_result["electricity_heat_demand_hh"]
# demand["ABW-electricity-demand_cts"] += electricity_heat_production_result["electricity_heat_demand_cts"]
# demand["ABW-electricity-demand_ind"] += electricity_heat_production_result["electricity_heat_demand_ind"]
# Electric share of heat production
# electricity_heat_production_result = electricity_heat_demand(simulation_id) # noqa: ERA001
# demand["ABW-electricity-demand_hh"] += electricity_heat_production_result[
# "electricity_heat_demand_hh"]
# demand["ABW-electricity-demand_cts"] += electricity_heat_production_result[
# "electricity_heat_demand_cts"]
# demand["ABW-electricity-demand_ind"] += electricity_heat_production_result[
# "electricity_heat_demand_ind"]

renewables = renewable_electricity_production(simulation_id)

Expand Down

0 comments on commit 5b7c04d

Please sign in to comment.