Skip to content

Commit 3cffb74

Browse files
EspenEnesespenenesNOVdomna
authored
Refactor channel_group_search implementation in tdm_loader (#27)
* Refactor channel_group_search implementation in tdm_loader When searching and resulting groups has identical channel group names, only the first channel group index is returned New logic will look at channel group names together with occurrences to find the correct channel group index. * Update tdm_loader/tdm_loader.py Co-authored-by: Florian Dobener <[email protected]> * Simplify channel group search logic in tdm_loader The previous implementation counted and used the number of times a channel group name appeared, which added extra complexity to the search logic. The new logic simplifies this process by directly appending the names to the found_terms list and by making the search case- and space-insensitive. * Refactor search logic in tdm_loader for channel group names Switched from a for-loop and conditional check structure to an inline list comprehension to search for channel group names. The aim of this refactor is to simplify the code and improve readability, while maintaining the functionality of ignoring None values and retaining valid group names. * Update return type in tdm_loader Changed the return type of a function in tdm_loader from a list to a set. This modification ensures unique channel group names are returned from the function, thus improving the accuracy of the channel search process. * Removed the use of set when returning search results from channel_group_search * Update tdm_loader/tdm_loader.py Co-authored-by: Florian Dobener <[email protected]> * Update tdm_loader/tdm_loader.py Co-authored-by: Florian Dobener <[email protected]> * Update tdm_loader/tdm_loader.py Co-authored-by: Florian Dobener <[email protected]> --------- Co-authored-by: Espen Enes <[email protected]> Co-authored-by: Florian Dobener <[email protected]>
1 parent d390e77 commit 3cffb74

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tdm_loader/tdm_loader.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,10 @@ def channel_group_search(self, search_term):
199199

200200
ind = []
201201
for name in found_terms:
202-
i = chg_names.index(name)
203-
ind.append((name, i))
202+
for occurence in range(found_terms.count(name)):
203+
i = self.channel_group_index(name, occurence)
204+
if (name, i) not in ind:
205+
ind.append((name, i))
204206

205207
return ind
206208

0 commit comments

Comments
 (0)