Skip to content

Commit

Permalink
* nemo/scenarios.py: Fix ruff warnings.
Browse files Browse the repository at this point in the history
Need to run isort --profile black --line-length=79. The default line
length for black is 88 which then triggers flake8 warnings about lines
being too long!
  • Loading branch information
bje- committed Aug 1, 2024
1 parent 53da59a commit abcf112
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions nemo/scenarios.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,30 @@
"""Supply side scenarios."""

from nemo import configfile, regions
from nemo.generators import (CCGT, CCGT_CCS, CST, OCGT, Biofuel, Black_Coal,
CentralReceiver, Coal_CCS, DemandResponse, Hydro,
PumpedHydroPump, PumpedHydroTurbine, PV1Axis,
Wind, WindOffshore)
from nemo.polygons import (WILDCARD, cst_limit, offshore_wind_limit, pv_limit,
wind_limit)
from nemo.generators import (
CCGT,
CCGT_CCS,
CST,
OCGT,
Biofuel,
Black_Coal,
CentralReceiver,
Coal_CCS,
DemandResponse,
Hydro,
PumpedHydroPump,
PumpedHydroTurbine,
PV1Axis,
Wind,
WindOffshore,
)
from nemo.polygons import (
WILDCARD,
cst_limit,
offshore_wind_limit,
pv_limit,
wind_limit,
)
from nemo.storage import PumpedHydroStorage
from nemo.types import UnreachableError

Expand Down

0 comments on commit abcf112

Please sign in to comment.