Skip to content

Commit af3f3ca

Browse files
committed
fix: Fix failing pipeline due to code indentation
Signed-off-by: joshuaunity <oghenerobojosh01@gmail.com>
1 parent d13c561 commit af3f3ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flexmeasures/data/schemas/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def convert_to_quantity(value: str, to_unit: str) -> ur.Quantity:
8585
f"Cannot convert value '{value}' to a valid quantity. {e}"
8686
)
8787

88-
88+
8989
def extract_sensors_from_flex_config(plot: dict) -> list[Sensor]:
9090
"""
9191
Extracts a consolidated list of sensors from an asset based on
@@ -118,8 +118,8 @@ def extract_sensors_from_flex_config(plot: dict) -> list[Sensor]:
118118

119119
return all_sensors
120120

121-
122-
def snake_to_kebab(key: str) -> str:
121+
122+
def snake_to_kebab(key: str) -> str:
123123
"""Convert snake_case to kebab-case."""
124124
return key.replace("_", "-")
125125

0 commit comments

Comments
 (0)