diff --git a/pyproject.toml b/pyproject.toml index c89a9d6..9588fc0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" [project] name = "config_manager" authors = [{name = "Joris Yidong Scholl", email = "joris.scholl@posteo.de"}] -version = "0.0.1" +version = "0.0.2" description = "A small package to help me organize my settingsd" license = {file = "LICENSE"} classifiers = ["License :: OSI Approved :: MIT License"] diff --git a/src/config_manager/__init__.py b/src/config_manager/__init__.py index 38d3b9c..5d96b82 100644 --- a/src/config_manager/__init__.py +++ b/src/config_manager/__init__.py @@ -21,5 +21,5 @@ def load_config(self): json.dump(self.default_config, f, ensure_ascii=False, indent=4) sys.exit("No (or corrupt) config") - def get_config_path(self): - return self.config_path \ No newline at end of file + def print_config_path(self): + print(self.config_path)