riotctrl_shell.gnrc: remove superfluous quotation marks

This commit is contained in:
Martine Lenders 2020-07-15 13:46:34 +02:00
parent 892370121d
commit 198eda14e6
No known key found for this signature in database
GPG Key ID: CCD317364F63286F

View File

@ -393,7 +393,7 @@ class GNRCPktbufStatsParser(ShellInteractionParser):
r"~ unused: 0x(?P<start>[0-9A-Fa-f]+) "
# flake reports r'\(', r'\)' as invalid escape sequence
# false positively
r"\(next: ""(0x(?P<next>[0-9A-Fa-f]+)|\(nil\)), " # noqa W605
r"\(next: (0x(?P<next>[0-9A-Fa-f]+)|\(nil\)), "
r"size: +(?P<size>\d+)\) ~"
)