1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-21 04:32:23 +01:00

Replace random non-ascii-print characters with standard substitutes (#6840)

This commit is contained in:
Pieter Viljoen
2024-05-31 17:49:48 -07:00
committed by GitHub
parent 1f301df51d
commit 41e13fa6f4
6 changed files with 10 additions and 10 deletions

View File

@@ -100,7 +100,7 @@ def process_calibration(value):
elif isinstance(value, list):
if len(value) != 3:
raise cv.Invalid(
"SteinhartHart Calibration must consist of exactly three values"
"Steinhart-Hart Calibration must consist of exactly three values"
)
value = cv.Schema([validate_calibration_parameter])(value)
a, b, c = calc_steinhart_hart(value)