From 198eda14e6c7d8e2f800b2688dc0612b3ef44773 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Wed, 15 Jul 2020 13:46:34 +0200 Subject: [PATCH] riotctrl_shell.gnrc: remove superfluous quotation marks --- dist/pythonlibs/riotctrl_shell/gnrc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/pythonlibs/riotctrl_shell/gnrc.py b/dist/pythonlibs/riotctrl_shell/gnrc.py index 31f8839b46..a8cce9d5dd 100644 --- a/dist/pythonlibs/riotctrl_shell/gnrc.py +++ b/dist/pythonlibs/riotctrl_shell/gnrc.py @@ -393,7 +393,7 @@ class GNRCPktbufStatsParser(ShellInteractionParser): r"~ unused: 0x(?P[0-9A-Fa-f]+) " # flake reports r'\(', r'\)' as invalid escape sequence # false positively - r"\(next: ""(0x(?P[0-9A-Fa-f]+)|\(nil\)), " # noqa W605 + r"\(next: (0x(?P[0-9A-Fa-f]+)|\(nil\)), " r"size: +(?P\d+)\) ~" )