From 38d00316e1cb9957d763bf4d452262a7e7974340 Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Thu, 4 Dec 2025 11:33:29 +0100 Subject: [PATCH] remove duplicate method --- corrlib/initialization.py | 20 -------------------- 1 file changed, 20 deletions(-) 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.