diff --git a/corrlib/initialization.py b/corrlib/initialization.py index 242ab45..130cea8 100644 --- a/corrlib/initialization.py +++ b/corrlib/initialization.py @@ -37,26 +37,6 @@ def _create_db(db: str) -> None: 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: """ Create the config file for backlogger.