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

This commit is contained in:
Justus Kuhlmann 2025-12-04 11:32:30 +01:00
commit 18843f4d9f
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