Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 3b23a31

Browse files
Merge pull request #6 from techboy-coder/thomasaarholt-main
Add punctuation from thomasaarholt
2 parents 1574dd3 + a5d553a commit 3b23a31

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

mmdl/ask.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ def asker():
2323
).ask()
2424

2525
if single_songs == "One song":
26-
return [questionary.text("What is the song name").ask()]
26+
return [questionary.text("What is the song name?").ask()]
2727
else:
2828
input_method = questionary.select(
29-
"Which songs do you want to download?",
29+
"How do you want to download?",
3030
choices=[
31-
"Songs, comma seperated",
31+
"Write song titles, comma seperated",
3232
'List in textfile (1 Song per line)',
3333
'From YTMusic (beta)',
3434
]).ask() # returns value of selection
@@ -58,7 +58,7 @@ def asker():
5858
songs_list = text_file.read().splitlines()
5959
return songs_list
6060
elif input_method=="Songs, comma seperated":
61-
songs_list = questionary.text("Write all songs (comma seperated)").ask().split(",")
61+
songs_list = questionary.text("Write all songs (comma seperated):").ask().split(",")
6262
return songs_list
6363
except Exception as e:
6464
## eventually change :/

mmdl/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,14 @@ def list(songs, verbose, debug, ask):
138138
"""
139139
if ask:
140140
console.print("[cyan][>][/] We'll be manually asking you for songs.")
141-
songs_list = questionary.text("Write all songs search terms (comma seperated)").ask()
141+
songs_list = questionary.text("Write all songs search terms (comma seperated): ").ask()
142142
if not songs_list:
143143
quit()
144144
songs_list = songs_list.split(",")
145145
else:
146146
if len(songs) < 1:
147147
# console.print("[cyan][-][/] You didn't specify any songs. So we'll be manually asking them to you.")
148-
songs_list = questionary.text("Write all songs search terms (comma seperated)").ask()
148+
songs_list = questionary.text("Write all songs search terms (comma seperated):").ask()
149149
if not songs_list:
150150
quit()
151151
songs_list = songs_list.split(",")

mmdl/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def print_logo():
8383
def num_of_songs_printer(num):
8484
console.print("\n[cyan]> [/] Total number of songs: %s. \n" % (num))
8585

86-
def wanna_continue(msg="Do you want to continue"):
86+
def wanna_continue(msg="Do you want to continue? "):
8787
if not questionary.confirm(msg).ask():
8888
quit()
8989

0 commit comments

Comments
 (0)