Fix using validators set in __manifest__.py

E.g. you can use the validator 'is_file' to check if a config is a valid file
This commit is contained in:
Patrick Robertson
2025-02-04 13:36:05 +01:00
parent a873e56b87
commit b301f60ea3
3 changed files with 20 additions and 5 deletions

View File

@@ -13,6 +13,9 @@
"default": None,
"help": "Path to the input file(s) to read the URLs from, comma separated. \
Input files should be formatted with one URL per line",
"required": True,
"type": "valid_file",
"nargs": "+",
},
"column": {
"default": None,