From d33a48eb24da2f465509a823f953d62b1019b0bf Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Tue, 10 Nov 2020 13:46:48 -0500 Subject: [PATCH] systemcmds/topic_listener: remove excludes - this is a bit wasteful, but we can afford it for now everywhere listener is enabled --- src/systemcmds/topic_listener/generate_listener.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/systemcmds/topic_listener/generate_listener.py b/src/systemcmds/topic_listener/generate_listener.py index 49a6a620b9..7c07659784 100755 --- a/src/systemcmds/topic_listener/generate_listener.py +++ b/src/systemcmds/topic_listener/generate_listener.py @@ -12,9 +12,6 @@ import re raw_messages = sys.argv[2:] -# large and not worth printing -raw_messages = [x for x in raw_messages if not any(exception in x for exception in ['qshell_req', 'ulog_stream', 'gps_inject_data', 'gps_dump'])] - messages = [] topics = [] message_elements = []