refactor/data_backend #12

Merged
jkuhl merged 36 commits from refactor/data_backend into develop 2025-12-04 15:47:45 +01:00
Showing only changes of commit 18843f4d9f - Show all commits

correct syntax
Some checks failed
Ruff / ruff (push) Waiting to run
Mypy / mypy (push) Failing after 45s
Pytest / pytest (3.12) (push) Has been cancelled
Pytest / pytest (3.13) (push) Has been cancelled
Pytest / pytest (3.14) (push) Has been cancelled

Justus Kuhlmann 2025-12-04 11:32:30 +01:00
Signed by: jkuhl
GPG key ID: 00ED992DD79B85A6

View file

@ -2,7 +2,7 @@ from configparser import ConfigParser
import sqlite3
import datalad.api as dl
import os
import .tracker as tr
from .tracker import save
def _create_db(db: str) -> None:
@ -94,5 +94,5 @@ def create(path: str) -> None:
with open(os.path.join(path, ".gitignore"), "w") as fp:
fp.write(".cache")
fp.close()
tr.save(path, message="Initialized correlator library", dataset=path)
save(path, message="Initialized correlator library", dataset=path)
return