fix config parsing in manifests

This commit is contained in:
erinhmclark
2025-01-24 13:24:54 +00:00
parent aa7ca93a43
commit 0453d95f56
10 changed files with 20 additions and 12 deletions

View File

@@ -9,12 +9,12 @@
"allow_worksheets": {
"default": set(),
"help": "(CSV) only worksheets whose name is included in allow are included (overrides worksheet_block), leave empty so all are allowed",
"type": lambda val: set(val.split(",")),
"type": "auto_archiver.utils.parse_csv_to_set",
},
"block_worksheets": {
"default": set(),
"help": "(CSV) explicitly block some worksheets from being processed",
"type": lambda val: set(val.split(",")),
"type": auto_archiver.utils.parse_csv_to_set,
},
"use_sheet_names_in_stored_paths": {
"default": True,