Update __init__.py

This commit is contained in:
Swee 2024-10-20 12:15:30 -07:00
parent 627959d8f3
commit 52e61e664b

View file

@ -4,7 +4,7 @@ IRC Parser for the SugarCaneIRC family.
import socket
import ssl as ssl_module
import threading
__version__ = 0
__version__ = "_TEST_"
class SystemMessage: # System message object
def __init__(self, content:str, user:str, typ:str, mention:bool, chan=None):
self.content, self.user, self.type, self.mention, self.chan = content,user,typ,mention,chan