From 9df2b08d0b0bbc52c9bb23f80ca45833d9c5ba5c Mon Sep 17 00:00:00 2001 From: Kyle Skolfield Date: Tue, 23 Jan 2024 11:30:07 -0700 Subject: [PATCH] Black formatting --- gtep/gtep_model.py | 4 ++-- setup.py | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/gtep/gtep_model.py b/gtep/gtep_model.py index 0635728..5bca48b 100644 --- a/gtep/gtep_model.py +++ b/gtep/gtep_model.py @@ -1336,7 +1336,7 @@ def model_data_references(m): } # A fraction of renewableCapacity representing fraction of capacity - # that can be reliably counted toward planning reserve requriement + # that can be reliably counted toward planning reserve requirement # TODO: WHAT HAVE I DONE HERE I HATE IT m.renewableCapacityValue = { renewableGen: min( @@ -1426,7 +1426,7 @@ def model_data_references(m): } # Cost per MW of curtailed renewable energy - # NOTE: what should this be vauled at? This being both curtailment and load shed. + # NOTE: what should this be valued at? This being both curtailment and load shed. # TODO: update valuations m.curtailmentCost = 2 * max(m.fuelCost.values()) m.loadShedCost = 1000 * m.curtailmentCost diff --git a/setup.py b/setup.py index 30d40bb..7acf938 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,10 @@ import os from setuptools import setup, find_packages -setup(name="gtep", version="0.1.dev0", python_requires=">=3.7", description="a python package", packages=find_packages()) \ No newline at end of file +setup( + name="gtep", + version="0.1.dev0", + python_requires=">=3.7", + description="a python package", + packages=find_packages(), +)