change cached to be string
All checks were successful
Mypy / mypy (push) Successful in 44s
Pytest / pytest (3.12) (push) Successful in 50s
Pytest / pytest (3.13) (push) Successful in 47s
Pytest / pytest (3.14) (push) Successful in 49s
Ruff / ruff (push) Successful in 34s

This commit is contained in:
Justus Kuhlmann 2025-12-04 12:09:26 +01:00
commit 1264a09ed0
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -50,7 +50,7 @@ def _create_config(path: str) -> None:
'toml_imports_path': os.path.join(path, 'toml_imports'),
'import_scripts_path': os.path.join(path, 'import_scripts'),
'tracker': 'datalad',
'cached': True,
'cached': 'True',
}
with open(os.path.join(path, '.corrlib'), 'w') as configfile:
config.write(configfile)