Skip to content

Commit

Permalink
fix: refactor _tagsFromString to _tags_from_str (#1279)
Browse files Browse the repository at this point in the history
This is a one liner  - seems we have to refactor a method...
  • Loading branch information
skoegl authored Oct 7, 2024
1 parent d07877a commit 763ab2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/viur/core/skeleton.py
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ def fulltextSearch(self, queryString: str, databaseQuery: db.Query) -> list[db.E
"""
Run a fulltext search
"""
keywords = list(self._tagsFromString(queryString))[:10]
keywords = list(self._tags_from_str(queryString))[:10]
resultScoreMap = {}
resultEntryMap = {}

Expand Down

0 comments on commit 763ab2e

Please sign in to comment.