Skip to content

Commit bee29f3

Browse files
committed
fuzzy.py: Add arguments debug prints
Signed-off-by: Filip Gołaś <[email protected]>
1 parent 1ff1ce2 commit bee29f3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/robot/utils/fuzzy.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ def fuzzy_find_all(buffer, expected, percent_match:float=None, max_errors:int=No
2626
else:
2727
max_l_dist = None
2828

29+
print("percent_match: ", percent_match, ": ", type(percent_match))
30+
print("max_errors: ", max_errors, ": ", type(max_errors))
31+
print("max_insertions: ", max_insertions, ": ", type(max_insertions))
32+
print("max_deletions: ", max_deletions, ": ", type(max_deletions))
33+
print("ignore_case: ", ignore_case, ": ", type(ignore_case))
2934
try:
3035
if ignore_case:
3136
matches = fuzzysearch.find_near_matches(expected.lower(), buffer.lower(), max_l_dist=max_l_dist, max_insertions=max_insertions, max_deletions=max_deletions)

0 commit comments

Comments
 (0)