From 9f731d58ce31313483cf123dbf0c7a9f9f0b07ec Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Tue, 14 Jan 2025 12:24:47 +0100 Subject: [PATCH] cc256x: fix python warning --- chipset/cc256x/convert_bts_init_scripts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chipset/cc256x/convert_bts_init_scripts.py b/chipset/cc256x/convert_bts_init_scripts.py index 2aafb7cc7..427c059bc 100755 --- a/chipset/cc256x/convert_bts_init_scripts.py +++ b/chipset/cc256x/convert_bts_init_scripts.py @@ -312,7 +312,7 @@ if 'cc256x_bt_service_pack_2.8_ant_1.16' in name_lower: aka = "6.6.15" # use AKA from .bts file that it -name_parts = re.match('.*TIInit_(\d*\.\d*\.\d*).*.bts', main_bts) +name_parts = re.match(r'.*TIInit_(\d*\.\d*\.\d*).*.bts', main_bts) if name_parts: aka = name_parts.group(1)