-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Both before and after a Comparator runs its comparisons, calling Comparator.comps should return the list of comps assigned to the Comparator instance.
Now:
>>> c = cpt.Comparator(l, r, query, comps=[LEN_COMP, FIRST_COMP])
>>> c.results
[]
>>> c.run_comparisons()
[('len_comp', True), ('first_comp', False)]Desired:
>>> c = cpt.Comparator(l, r, query, comps=[LEN_COMP, FIRST_COMP])
>>> c.comps
[('len_comp', None), ('first_comp', None)]
>>> c.run_comparisons()
[('len_comp', True), ('first_comp', False)]Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request