add IRCArgs.append func

This commit is contained in:
jesopo 2019-11-08 17:41:18 +00:00
parent b41588b098
commit 98183fe4b9

View file

@ -25,6 +25,9 @@ class IRCArgs(object):
def __setitem__(self, index: int, value: str):
self._args[index] = value
def append(self, value: str):
self._args.append(value)
class Hostmask(object):
def __init__(self, nickname: str, username: str, hostname: str,
hostmask: str):