diff options
-rw-r--r-- | notcqst.py | 18 |
1 files changed, 1 insertions, 17 deletions
@@ -6,7 +6,6 @@ from yt_dlp import YoutubeDL # TODO eradicate global variables -# TODO add SSL support reconnect = 0 text_str = 0 @@ -73,7 +72,7 @@ def command_flag(irc): command = split_spaces[1].strip() match command: case "choose": command_choose(split_spaces, irc) - case "hello": command_hello() + case "hello": command_hello(irc) case _: unknown_command() @@ -115,18 +114,3 @@ def connect_loop(irc): print("connecting to: " + hostname) connect_checked() - - - - - - - - - - - - - - - |