From 516dadde6eef5e4730d50cfbf7524e885eb79871 Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Tue, 17 Dec 2024 12:07:41 +1100 Subject: [PATCH] * nemo/scenarios.py (re_plus_nuclear): Bug fix. --- nemo/scenarios.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nemo/scenarios.py b/nemo/scenarios.py index 4f499e52..d004804d 100644 --- a/nemo/scenarios.py +++ b/nemo/scenarios.py @@ -238,7 +238,7 @@ def re_plus_nuclear(context): """Renewables with nuclear and OCGT peakers.""" re100(context) context.generators = \ - [Nuclear(WILDCARD, 0)] + context.generators[:-4] + \ + [Nuclear(WILDCARD, 0)] + context.generators + \ [OCGT(WILDCARD, 0)]