Skip to content

Commit

Permalink
change binref default logic to conjunctive
Browse files Browse the repository at this point in the history
  • Loading branch information
huettenhain committed Dec 13, 2024
1 parent af0ff60 commit 090017c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions refinery/explore.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ def explorer(keyword_color='91', unit_color='93'):
'a unit, it will be listed.'
)
argp.add_argument(
'-I', '--conjunctive',
'-o', '--or',
dest='quantifier',
action='store_const',
const=all,
default=any,
help='All keywords must match rather than any of them.'
const=any,
default=all,
help='Any keywords may match rather than requiring all of them to match.'
)
argp.add_argument(
'-a', '--all',
Expand Down

0 comments on commit 090017c

Please sign in to comment.