I have a file main.py containing this:
import misc
def do_meme(self, raw_args):
misc.memes()
do_meme("hello world")
and a file misc.py containing this:
import random
def bitch_lasanga_func():
print("""
Now playing: Bitch Lasagna
1:07 ●━━━━━━─────── 2:15
⇆ㅤㅤㅤ◁ㅤㅤ❚❚ㅤㅤ▷ㅤㅤㅤ↻
""")
memes_list = {
"bitch_lasanga":bitch_lasanga_func,
}
def memes():
memes_list[random.choice(list(memes_list))]
When i run the file main.py i would expect the output to be this:
Now playing: Bitch Lasagna
1:07 ●━━━━━━─────── 2:15
⇆ㅤㅤㅤ◁ㅤㅤ❚❚ㅤㅤ▷ㅤㅤㅤ↻
But instead i don't get anything. Can anyone help me debug?
NOTE: Full project here
memes_list[random.choice(list(memes_list))]()? the paraenthesis at the end to execute the method ?