From 35926344eac1eda54a0ec535c9acb35239dc687b Mon Sep 17 00:00:00 2001 From: jbouwh Date: Wed, 21 May 2025 06:04:18 +0000 Subject: [PATCH] Stale doc strings --- pylint/plugins/hass_enforce_greek_micro_char.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pylint/plugins/hass_enforce_greek_micro_char.py b/pylint/plugins/hass_enforce_greek_micro_char.py index 0fb4d897b17..2e69a85972c 100644 --- a/pylint/plugins/hass_enforce_greek_micro_char.py +++ b/pylint/plugins/hass_enforce_greek_micro_char.py @@ -22,11 +22,11 @@ class HassEnforceGreekMicroCharChecker(BaseChecker): options = () def visit_annassign(self, node: nodes.AnnAssign) -> None: - """Check for sorted PLATFORMS const with type annotations.""" + """Check for micro char const or StrEnum with type annotations.""" self._do_micro_check(node.target, node) def visit_assign(self, node: nodes.Assign) -> None: - """Check for sorted PLATFORMS const without type annotations.""" + """Check for micro char const without type annotations.""" for target in node.targets: self._do_micro_check(target, node)