1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #14519 from RIOT-OS/riotctrl_shell/fix/superflous-quotation-marks

riotctrl_shell.gnrc: remove superfluous quotation marks
This commit is contained in:
Martine Lenders 2020-07-15 17:35:50 +02:00 committed by GitHub
commit 2ab65da409
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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+)\) ~"
)