Skip to content

Commit 0684bb8

Browse files
committed
Fix
1 parent a78b751 commit 0684bb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugwise/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def format_measure(measure: str, unit: str) -> float | int:
209209
result = f"{round(float_measure, 1):.1f}"
210210
elif abs(float_measure) < 10:
211211
result = f"{round(float_measure, 2):.2f}"
212-
else # abs(float_measure) >= 10
212+
else: # abs(float_measure) >= 10
213213
result = f"{round(float_measure, 1):.1f}"
214214

215215
return result

0 commit comments

Comments
 (0)