Skip to content

Commit 463b483

Browse files
committed
Remove remaining references
1 parent b5d1a2b commit 463b483

2 files changed

Lines changed: 1 addition & 16 deletions

File tree

docs/user-guide/modify-timing-data.ipynb

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -149,21 +149,6 @@
149149
"```"
150150
]
151151
},
152-
{
153-
"cell_type": "markdown",
154-
"metadata": {},
155-
"source": [
156-
"We also have to modity the `forecast` value for each sector. For example, for the power sector the `sectors.power.subsectors.all` section should now look as follows:\n",
157-
"\n",
158-
"```toml\n",
159-
"[sectors.power.subsectors.all]\n",
160-
"agents = '{path}/technodata/Agents.csv'\n",
161-
"existing_capacity = '{path}/technodata/power/ExistingCapacity.csv'\n",
162-
"lpsolver = \"scipy\"\n",
163-
"forecast = 2\n",
164-
"```"
165-
]
166-
},
167152
{
168153
"cell_type": "markdown",
169154
"metadata": {},

src/muse/readers/toml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ def read_technodata(
737737
technologies[name] = data
738738

739739
# make sure technologies includes the requisite years
740-
maxyear = getattr(settings, "forecast", 5) + max(time_framework)
740+
maxyear = max(time_framework)
741741
if technologies.year.max() < maxyear:
742742
msg = "Forward-filling technodata to fit simulation timeframe"
743743
getLogger(__name__).info(msg)

0 commit comments

Comments
 (0)