From f6eae085978d7a11483156b5d4e461c875b46729 Mon Sep 17 00:00:00 2001 From: Daniel Williams Date: Mon, 15 Mar 2021 23:43:28 -0400 Subject: [PATCH] [uorb_graph][fix][doc] FIxes type around regex definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Beat Küng --- Tools/uorb_graph/create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/uorb_graph/create.py b/Tools/uorb_graph/create.py index f3cf18acd4..68311fa788 100755 --- a/Tools/uorb_graph/create.py +++ b/Tools/uorb_graph/create.py @@ -88,7 +88,7 @@ class PubSub(object): if match is None: continue - # # all regexes should contain 3 capture groups (or else this code block crashes) + # all regexes should contain 2 capture groups # total_match = match.group(0) route_group, topic_group = match.groups()