From ded158e0e6bc485d59dc26ac06b746e9371ecca0 Mon Sep 17 00:00:00 2001 From: topsworld Date: Mon, 16 Dec 2024 10:44:01 +0800 Subject: [PATCH] style: ignore pylint wanring ('inconsistent-quotes') for config_flow.py --- custom_components/xiaomi_home/config_flow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/custom_components/xiaomi_home/config_flow.py b/custom_components/xiaomi_home/config_flow.py index 7c2e9ece..ccc91f9b 100644 --- a/custom_components/xiaomi_home/config_flow.py +++ b/custom_components/xiaomi_home/config_flow.py @@ -1255,6 +1255,7 @@ async def async_step_config_confirm(self, user_input=None): async def handle_oauth_webhook(hass, webhook_id, request): + # pylint: disable=inconsistent-quotes try: data = dict(request.query) if data.get('code', None) is None or data.get('state', None) is None: