remove duplicate method
This commit is contained in:
parent
18843f4d9f
commit
38d00316e1
1 changed files with 0 additions and 20 deletions
|
|
@ -37,26 +37,6 @@ def _create_db(db: str) -> None:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
def _create_config(path):
|
|
||||||
"""
|
|
||||||
Create the config file for backlogger.
|
|
||||||
|
|
||||||
"""
|
|
||||||
config = ConfigParser()
|
|
||||||
config['core'] = {
|
|
||||||
'version': '1.0',
|
|
||||||
'db_path': os.path.join(path, 'backlogger.db'),
|
|
||||||
'projects_path': os.path.join(path, 'projects'),
|
|
||||||
'archive_path': os.path.join(path, 'archive'),
|
|
||||||
'toml_imports_path': os.path.join(path, 'toml_imports'),
|
|
||||||
'import_scripts_path': os.path.join(path, 'import_scripts'),
|
|
||||||
'tracker': 'datalad',
|
|
||||||
'cached': True,
|
|
||||||
}
|
|
||||||
with open(os.path.join(path, '.corrlib'), 'w') as configfile:
|
|
||||||
config.write(configfile)
|
|
||||||
|
|
||||||
|
|
||||||
def _create_config(path: str) -> None:
|
def _create_config(path: str) -> None:
|
||||||
"""
|
"""
|
||||||
Create the config file for backlogger.
|
Create the config file for backlogger.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue