Update __init__.py

This commit is contained in:
Swee 2024-10-19 19:46:42 -07:00
parent 96a90bcac6
commit b919277a2d

View file

@ -4,9 +4,9 @@ IRC Parser for the SugarCaneIRC family.
import socket import socket
import ssl as ssl_module import ssl as ssl_module
class message: # Message object class message: # Message object
def __init__(self, content:str, channel:str, nick:str): def __init__(self, content:str, chan:str, nick:str):
self.content = content self.content = content
self.channel = channel self.channel = chan
self.nick = nick self.nick = nick
class channel: # Channel object class channel: # Channel object
is_init = False # If the channel's properties are initialized yet is_init = False # If the channel's properties are initialized yet