Skip to content

Commit

Permalink
added verison printing
Browse files Browse the repository at this point in the history
  • Loading branch information
CardiJey committed Aug 5, 2024
1 parent 60ea42f commit 7677ae9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
[project]
name = "config_manager"
authors = [{name = "Joris Yidong Scholl", email = "[email protected]"}]
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"]
Expand Down
4 changes: 2 additions & 2 deletions src/config_manager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
def print_config_path(self):
print(self.config_path)

0 comments on commit 7677ae9

Please sign in to comment.