Fix json loader - it should go in 'validators' not 'utils'

Fixes #214
This commit is contained in:
Patrick Robertson
2025-02-20 13:10:23 +00:00
parent 40488e0869
commit eda359a1ef
7 changed files with 11 additions and 12 deletions

View File

@@ -68,7 +68,7 @@ def generate_module_docs():
config_yaml = {}
for key, value in manifest['configs'].items():
type = value.get('type', 'string')
if type == 'auto_archiver.utils.json_loader':
if type == 'json_loader':
value['type'] = 'json'
elif type == 'str':
type = "string"