Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Switch to brightway #822

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion data/common/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def compute_impacts(frozen_processes, default_db, impacts_py):
if not activity:
raise Exception(f"This process was not found in brightway: {process}")

results = compute_simapro_impacts(activity, main_method, impacts_py)
results = None # compute_simapro_impacts(activity, main_method, impacts_py)
# WARNING assume remote is in m3 or MJ (couldn't find unit from COM intf)
if process["unit"] == "kWh" and isinstance(results, dict):
results = {k: v * 3.6 for k, v in results.items()}
Expand Down
Loading