fix deprecation warning

This commit is contained in:
Stefano Lande 2022-09-21 10:01:15 +02:00
parent 0a57535d5f
commit 09ac00219b
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ def parse_telemetry_report(text):
parsed = {}
rest = ""
match = re.findall("(^#\d{3},(\d+(\.\d+)?,){5}[01]{8}$)", text)
match = re.findall(r"(^#\d{3},(\d+(\.\d+)?,){5}[01]{8}$)", text)
if match:
logger.debug("Attempting to parse telemetry-message packet")