Skip to content

Commit

Permalink
lint: Fix issue with common_string_finder
Browse files Browse the repository at this point in the history
  • Loading branch information
german77 committed Jan 13, 2025
1 parent bc0ca21 commit 7b2627e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/check-format.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 7b2627e

Please sign in to comment.