correct syntax
This commit is contained in:
parent
3b64d8457b
commit
18843f4d9f
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ from configparser import ConfigParser
|
||||||
import sqlite3
|
import sqlite3
|
||||||
import datalad.api as dl
|
import datalad.api as dl
|
||||||
import os
|
import os
|
||||||
import .tracker as tr
|
from .tracker import save
|
||||||
|
|
||||||
|
|
||||||
def _create_db(db: str) -> None:
|
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:
|
with open(os.path.join(path, ".gitignore"), "w") as fp:
|
||||||
fp.write(".cache")
|
fp.write(".cache")
|
||||||
fp.close()
|
fp.close()
|
||||||
tr.save(path, message="Initialized correlator library", dataset=path)
|
save(path, message="Initialized correlator library", dataset=path)
|
||||||
return
|
return
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue