add IRCArgs.append func
This commit is contained in:
parent
b41588b098
commit
98183fe4b9
1 changed files with 3 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue