From 090017cf454b12c5edd90844fa62cd1888bebeea Mon Sep 17 00:00:00 2001 From: jesko Date: Fri, 13 Dec 2024 11:56:46 +0100 Subject: [PATCH] change binref default logic to conjunctive --- refinery/explore.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/refinery/explore.py b/refinery/explore.py index 7d2af3e8a..8bcd1e7d8 100644 --- a/refinery/explore.py +++ b/refinery/explore.py @@ -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',