Skip to content

Commit fec3380

Browse files
fix some coding style issues
1 parent aec5728 commit fec3380

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

optibess_algorithm/output_calculator.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1153,7 +1153,7 @@ def sell_prices(self):
11531153

11541154
@sell_prices.setter
11551155
def sell_prices(self, value: np.ndarray[Any, np.dtype[np.float64]]):
1156-
if isinstance(value, np.ndarray) and is_real_numbers(value):
1156+
if value is not None and isinstance(value, np.ndarray) and is_real_numbers(value):
11571157
if value.shape != (YEAR_HOURS,) and value.shape != (self._project_hour_num,):
11581158
raise ValueError(f"Prices shape should be ({YEAR_HOURS},) or ({self._project_hour_num}, ), prices"
11591159
f" for each hour in a year or for each hour of every year")
@@ -1173,7 +1173,7 @@ def buy_prices(self):
11731173

11741174
@buy_prices.setter
11751175
def buy_prices(self, value: np.ndarray[Any, np.dtype[np.float64]]):
1176-
if isinstance(value, np.ndarray) and is_real_numbers(value):
1176+
if value is not None and isinstance(value, np.ndarray) and is_real_numbers(value):
11771177
if value.shape != (YEAR_HOURS,) and value.shape != (self._project_hour_num, ):
11781178
raise ValueError(f"Prices shape should be ({YEAR_HOURS},) or ({self._project_hour_num}, ), prices"
11791179
f" for each hour in a year or for each hour of every year")

optibess_algorithm/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def build_tariff_table(winter_low: float, winter_high_week: float, winter_high_w
206206
return tariff_table
207207

208208

209-
def tariff_table_to_hourly(tariff_table: np.ndarray[float], year: int):
209+
def tariff_table_to_hourly(tariff_table: np.ndarray[Any, np.dtype[np.float64]], year: int):
210210
"""
211211
Create hourly prices for tariff table in the given year
212212

0 commit comments

Comments
 (0)