We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e61236 commit ce6566dCopy full SHA for ce6566d
src/textual/fuzzy.py
@@ -139,8 +139,8 @@ def score(search: _Search) -> float:
139
query_size = len(query)
140
find = candidate.find
141
# Limit the number of loops out of an abundance of caution.
142
- # This would be hard to reach without contrived data.
143
- remaining_loops = 200
+ # This should be hard to reach without contrived data.
+ remaining_loops = 10_000
144
145
while stack and (remaining_loops := remaining_loops - 1):
146
search = pop()
0 commit comments