in transcoder/message/DatacastParser.py [0:0]
def __include_message_type(self, msg_type):
if self.use_message_type_filtering is True:
msg_type_str = str(msg_type)
if self.message_type_inclusions is not None and msg_type_str not in self.message_type_inclusions:
return False
if self.message_type_exclusions is not None and msg_type_str in self.message_type_exclusions:
return False
return True