Update __init__.py

This commit is contained in:
Swee 2024-10-19 19:25:46 -07:00
parent b775a28dec
commit b40796211c

View file

@ -26,5 +26,5 @@ class IRCSession: # Actual IRC session
return False return False
def alive(self): # NOT FINISHED: To minimize exceptions, the client can ask the object if the socket connection is still alive. def alive(self): # NOT FINISHED: To minimize exceptions, the client can ask the object if the socket connection is still alive.
return False return False
def whois(self, nick:str): # Try to /whois the user, will return a user() object or None. def whois(self, nick:str): # NOT FINISHED: Try to /whois the user, will return a user() object or None.
return None return None