6
mirror of https://github.com/AllSpiceIO/cofactr-cogs.git synced 2025-04-18 07:48:55 +00:00

Remove default value for BOM manufacturer column name

This commit is contained in:
Jonathan Tran 2024-05-21 14:34:09 -04:00
parent 5503458e3e
commit 7b299ff7e6
No known key found for this signature in database
2 changed files with 6 additions and 4 deletions

View File

@ -17,8 +17,9 @@ inputs:
default: Part Number
bom_manufacturer_column:
description: >
The name of the manufacturer column in the BOM file. Defaults to 'Manufacturer'.
default: Manufacturer
The name of the manufacturer column in the BOM file. Defaults to ''. If
you use a search strategy that uses manufacturer, you must provide this.
default: ''
bom_quantity_column:
description: >
The name of the quantity column in the BOM file. Defaults to 'Quantity'.

View File

@ -123,8 +123,9 @@ if __name__ == "__main__":
)
parser.add_argument(
"--bom-manufacturer-column",
help="The name of the manufacturer column in the BOM file. Defaults to '%(default)s'.",
default="Manufacturer",
help="The name of the manufacturer column in the BOM file. Defaults to '%(default)s'. If "
+ "you use a search strategy that uses manufacturer, you must provide this.",
default="",
)
parser.add_argument(
"--bom-quantity-column",