Skip to content

Commit

Permalink
apply : requested changes applied.
Browse files Browse the repository at this point in the history
  • Loading branch information
sadrasabouri committed May 3, 2024
1 parent 6f63a26 commit 11cd66f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions nava/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def main():
metavar='FILE_PATH',
help='path to audio file',
)
parser.add_argument('--loop', help='sound play in loop flag', action='store_true', default=False)
parser.add_argument('--version', help="version flag", action='store_true', default=False)
parser.add_argument('--loop', help='sound play in loop', action='store_true', default=False)
parser.add_argument('--version', help="version", action='store_true', default=False)

args = parser.parse_known_args()[0]
if args.version:
Expand All @@ -40,7 +40,7 @@ def main():
loop = args.loop
play_cli(file_name, loop=loop)
else:
tprint("nava")
tprint("Nava")
tprint("V:" + NAVA_VERSION)
nava_help()
parser.print_help()
Expand Down
3 changes: 1 addition & 2 deletions nava/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ def nava_help():
"""
print(OVERVIEW)
print("Repo : https://github.com/openscilab/nava")
print("Webpage : https://openscilab.com/")
print()
print("Webpage : https://openscilab.com/\n")


def quote(func):
Expand Down

0 comments on commit 11cd66f

Please sign in to comment.