Skip to content

Commit

Permalink
whalridgefindr keyerror fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamil committed Aug 30, 2023
1 parent 67887a8 commit 650ca51
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion wbia/control/IBEISControl.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
(('--no-miew-id', '--nomiew-id'), 'wbia_miew_id._plugin'),
]

if ut.get_argflag('--wbia-whaleridgefindr'):
if ut.get_argflag('--whaleridgefindr'):
AUTOLOAD_PLUGIN_MODNAMES += [
(('--no-whaleridgefindr', '--nowhaleridgefindr'), 'wbia_whaleridgefindr._plugin'),
]
Expand Down
4 changes: 2 additions & 2 deletions wbia/viz/viz_matches.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_query_annot_pair_info(
'pie',
'pietwo',
'miewid',
'wbia-whaleridgefindr'
'whaleridgefindr'
]
) and getattr(qreq_, '_isnewreq', None):
if (
Expand Down Expand Up @@ -102,7 +102,7 @@ def get_data_annot_pair_info(
'pie',
'pietwo',
'miewid',
'wbia-whaleridgefindr'
'whaleridgefindr'
]
) and getattr(qreq_, '_isnewreq', None):
if (
Expand Down
4 changes: 2 additions & 2 deletions wbia/web/apis_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def review_graph_match_html(
'pie',
'pietwo',
'miewid',
'wbia-whaleridgefindr'
'whaleridgefindr'
):
cls = chip_match.AnnotMatch # ibs.depc_annot.requestclass_dict['BC_DTW']
else:
Expand Down Expand Up @@ -594,7 +594,7 @@ def review_query_chips_test(**kwargs):
elif 'use_miew_id' in request.args:
query_config_dict = {'pipeline_root': 'MiewId'}
elif 'use_whaleridgefindr' in request.args:
query_config_dict = {'pipeline_root': 'wbia-whaleridgefindr'}
query_config_dict = {'pipeline_root': 'whaleridgefindr'}
else:
query_config_dict = {}
result_dict = ibs.query_chips_test(query_config_dict=query_config_dict)
Expand Down

0 comments on commit 650ca51

Please sign in to comment.