Skip to content

Commit

Permalink
increase cutoff margin for alias matching
Browse files Browse the repository at this point in the history
  • Loading branch information
TSC21 authored and bkueng committed Jul 26, 2019
1 parent 5b2d952 commit c15e544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msg/tools/uorb_rtps_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def check_base_type(self):
base_types = {}
for incorrect in incorrect_base_types:
base_types.update({incorrect: difflib.get_close_matches(
incorrect, uorb_msg, n=1, cutoff=0.8)})
incorrect, uorb_msg, n=1, cutoff=0.6)})

if len(base_types) > 0:
raise AssertionError(
Expand Down

0 comments on commit c15e544

Please sign in to comment.