Skip to content

Commit 4b10591

Browse files
committed
bump max loops
1 parent dbadf6b commit 4b10591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/textual/fuzzy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def score(search: _Search) -> float:
131131
find = candidate.find
132132
# Limit the number of loops out of an abundance of caution.
133133
# This would be hard to reach without contrived data.
134-
remaining_loops = 50
134+
remaining_loops = 500
135135

136136
while stack and (remaining_loops := remaining_loops - 1):
137137
search = pop()

0 commit comments

Comments
 (0)