From 7677ae9f172201e91d1f6c0c6822bf29edf97a6e Mon Sep 17 00:00:00 2001 From: CardiJey Date: Mon, 5 Aug 2024 18:38:01 +0200 Subject: [PATCH] added verison printing --- pyproject.toml | 2 +- src/config_manager/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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)