mirror of
https://github.com/nichkara/InfinitumBotty.git
synced 2026-06-10 22:26:23 +02:00
10 lines
225 B
Python
10 lines
225 B
Python
class RemoteUser(object):
|
|
"""
|
|
Holds information about another user on IRC (nick!user@host)
|
|
"""
|
|
|
|
def __init__(self, nick, user, host):
|
|
self.nick = nick
|
|
self.user = user
|
|
self.host = host
|