remove default values

This commit is contained in:
a-bad-dev 2026-03-14 02:25:11 -03:00 committed by GitHub
commit ed44eb7c3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -310,8 +310,8 @@ class Server():
self._msg_q.put(f"PRIVMSG {source_channel} :CMD {cmd} exited with returncode {proc.returncode}\r\n".encode()) self._msg_q.put(f"PRIVMSG {source_channel} :CMD {cmd} exited with returncode {proc.returncode}\r\n".encode())
if __name__ == "__main__": if __name__ == "__main__":
serv = Server("RCE", "rce-is-fun-jcj", "##jcj2") serv = Server("<username>", "<nick>", "<channel>") #
serv.connect("tantalum.libera.chat", 6667, sock_recvbuf = 8192) serv.connect("<server IP>", 6667, sock_recvbuf = 8192) # NOTE TO USER: You have to set these values
# Allow for the user to send raw IRC messages # Allow for the user to send raw IRC messages
# These bypass the send queue # These bypass the send queue