Skip to content

Commit ce6566d

Browse files
committed
increase loops
1 parent 0e61236 commit ce6566d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/textual/fuzzy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ def score(search: _Search) -> float:
139139
query_size = len(query)
140140
find = candidate.find
141141
# 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
142+
# This should be hard to reach without contrived data.
143+
remaining_loops = 10_000
144144

145145
while stack and (remaining_loops := remaining_loops - 1):
146146
search = pop()

0 commit comments

Comments
 (0)