que = queue.Queue()
get_videos(que)
def get_videos(self, theQue):
links = input('Enter links comma seperated: ')
list = links.split(',')
for i in list:
theQue.put(i)
return
My current code says "NameError get_videos is not defined" I guess I tried with and without self and neither help maybe I'm confused how this works.