This commit is contained in:
deathbybandaid 2020-12-09 12:35:51 -05:00
parent 7cccfa155d
commit f4dc35de58

View File

@ -30,7 +30,7 @@ class OriginChannels():
self.fhdhr.logger.info("Found %s Total Channels" % len(self.unfiltered_chan_json))
self.filtered_chan_json = self.filterlist()
self.fhdhr.logger.info("Found %s Channels after applying filters." % len(self.filtered_chan_list))
self.fhdhr.logger.info("Found %s Channels after applying filters and Deduping." % len(self.filtered_chan_list))
for channel_dict in self.filtered_chan_list:
clean_station_item = {
@ -53,8 +53,6 @@ class OriginChannels():
def filterlist(self):
print(self.origin.filter_dict)
filtered_chan_list = []
for channels_item in self.unfiltered_chan_list:
filters_passed = []