From 7b2627e4d096cf88ee7130b31f70f674c9bb0e41 Mon Sep 17 00:00:00 2001 From: german77 <5944268+german77@users.noreply.github.com> Date: Mon, 13 Jan 2025 12:35:34 -0600 Subject: [PATCH] lint: Fix issue with common_string_finder --- tools/check-format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check-format.py b/tools/check-format.py index e7a7c0cf4..7b4895585 100755 --- a/tools/check-format.py +++ b/tools/check-format.py @@ -269,7 +269,7 @@ def common_string_finder(c, path): if "//" in line: continue - matches = re.findall(r'"(.+?)"', line) + matches = re.findall(r'"(.*?)"', line) for match in matches: if len(match) < 2: