Replace string in re.match with raw string

Regular expressions should be written using raw strings to avoid double escaping

Ruff rule: https://docs.astral.sh/ruff/rules/unraw-re-pattern/
This commit is contained in:
Willenst
2025-12-13 16:22:40 +03:00
committed by Alexander Popov
parent 9794b7dd7b
commit fbfec0030b
+1 -1
View File
@@ -105,7 +105,7 @@ def detect_arch_by_kconfig(fname: str) -> tuple[StrOrNone, str]:
with _open(fname) as f:
for line in f.readlines():
if m := re.match('CONFIG_([A-Z0-9_]+)=y$', line):
if m := re.match(r'CONFIG_([A-Z0-9_]+)=y$', line):
option = m.group(1)
if option not in SUPPORTED_ARCHS:
continue