Using search hints

Is it possible to return a list instead of using .search() over a table for the search hints?

In my get_search_keys() function, I return a list of integers back to the event handler, however I get the error

TypeError: 'int' does not support indexing
at app/SearchHints/SearchHints.py:42

I’m not even sure how to access SearchHints.py

You’re trying to index (e.g. use square brackets) on a variable that contains an int. You should really create a new post and post sample code centered around the line with the error, since this isn’t really about searching.