6
mirror of https://github.com/AllSpiceIO/cofactr-cogs.git synced 2025-04-14 07:19:13 +00:00

Change default search strategy to be less fuzzy

This commit is contained in:
Jonathan Tran 2024-05-13 19:32:54 -04:00
parent 76ec2e2e8f
commit ea23ac66b5
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -26,8 +26,8 @@ inputs:
search_strategy:
description: >
The Cofactr search strategy. Can be: default, mpn_sku_mfr, mpn_exact, mpn_exact_mfr. Defaults
to 'default'.
default: default
to 'mpn_sku_mfr'.
default: mpn_sku_mfr
output_file:
description: >
The path to the output file. Defaults to stdout, i.e. printing to the

View File

@ -131,7 +131,7 @@ if __name__ == "__main__":
"--search-strategy",
help="The Cofactr search strategy. Can be: default, mpn_sku_mfr, mpn_exact, mpn_exact_mfr. "
+ "Defaults to '%(default)s'.",
default="default",
default="mpn_sku_mfr",
)
parser.add_argument(
"--output-file",