From c77767024d09b6b689d9ab5795a4c09febfe5df1 Mon Sep 17 00:00:00 2001 From: jbouwh Date: Wed, 21 May 2025 11:38:08 +0000 Subject: [PATCH] typo --- pylint/plugins/hass_enforce_greek_micro_char.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylint/plugins/hass_enforce_greek_micro_char.py b/pylint/plugins/hass_enforce_greek_micro_char.py index b713aa84fb8..bee6efe65dc 100644 --- a/pylint/plugins/hass_enforce_greek_micro_char.py +++ b/pylint/plugins/hass_enforce_greek_micro_char.py @@ -14,7 +14,7 @@ class HassEnforceGreekMicroCharChecker(BaseChecker): priority = -1 msgs = { "W7452": ( - "Constants with a micro unit prefix must be encode mu as U+03BC (\u03bc), not as U+00B5 (\u00b5)", + "Constants with a micro unit prefix must encode mu as U+03BC (\u03bc), not as U+00B5 (\u00b5)", "hass-enforce-greek-micro-char", "According to [The Unicode Consortium](https://en.wikipedia.org/wiki/Micro-#Symbol_encoding_in_character_sets), the Greek letter character is preferred.", ),