Skip to content

Commit

Permalink
fixed cli version import
Browse files Browse the repository at this point in the history
  • Loading branch information
BlurryRoots committed Dec 8, 2023
1 parent a3ffd87 commit 36f3f5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/piper_whistle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


def version ():
return "1.6.38"
return "1.6.43"


if '__main__' == __name__:
Expand Down
3 changes: 2 additions & 1 deletion src/piper_whistle/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from . import db
from . import cmds
from . import util
from .__init__ import version


def create_arg_parser ():
Expand Down Expand Up @@ -219,7 +220,7 @@ def main ():
holz.normalize ()

if args.version:
print (get_version ())
print (version ())
return 0

# Fetch default paths for config and data storage.
Expand Down

0 comments on commit 36f3f5d

Please sign in to comment.