From d9ccc441466a6edfee0e6a497b46c6959b2a0725 Mon Sep 17 00:00:00 2001 From: Michael John Date: Sun, 2 Jun 2024 12:56:14 +0200 Subject: [PATCH] Use correct regex to avoid SyntaxWarning: invalid escape sequence '\.' Change-Id: I1c6179be294bf21c0897a3abf7e8ab1d270ae238 Signed-off-by: Galantsev, Dmitrii --- amdsmi_cli/BDF.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amdsmi_cli/BDF.py b/amdsmi_cli/BDF.py index f9ffe338..d8d23ffa 100644 --- a/amdsmi_cli/BDF.py +++ b/amdsmi_cli/BDF.py @@ -123,7 +123,7 @@ def __contains__(self, passed_bdf): """Overrided the 'in' comparator in python""" passed_bdf = str(BDF(passed_bdf)) - bdf_regex = "(?:[0-6]?[0-9a-fA-F]{1,4}:)?[0-2]?[0-9a-fA-F]{1,2}:[0-9a-fA-F]{1,2}\.[0-7]" + bdf_regex = "(?:[0-6]?[0-9a-fA-F]{1,4}:)?[0-2]?[0-9a-fA-F]{1,2}:[0-9a-fA-F]{1,2}\\.[0-7]" for match in re.findall(bdf_regex, passed_bdf): if self == match: return True