Compare commits

...

2 commits

Author SHA1 Message Date
5e1be236ee
TEMPFIX: add tools
Some checks failed
Mypy / mypy (push) Failing after 2s
Pytest / pytest (3.12) (push) Failing after 1s
Pytest / pytest (3.13) (push) Failing after 1s
Pytest / pytest (3.14) (push) Failing after 1s
Ruff / ruff (push) Failing after 1s
2026-02-20 09:47:12 +01:00
f8b70f07c9
add cache dir name to config 2026-02-20 09:45:05 +01:00
2 changed files with 2 additions and 0 deletions

View file

@ -22,3 +22,4 @@ from .meas_io import load_records as load_records
from .find import find_project as find_project
from .find import find_record as find_record
from .find import list_projects as list_projects
from .tools import *

View file

@ -72,6 +72,7 @@ def _create_config(path: str, tracker: str, cached: bool) -> ConfigParser:
'archive_path': 'archive',
'toml_imports_path': 'toml_imports',
'import_scripts_path': 'import_scripts',
'cache_path': '.cache',
}
return config