diff --git a/src/IRCLine.py b/src/IRCLine.py index 269e1dc0..9f120e10 100644 --- a/src/IRCLine.py +++ b/src/IRCLine.py @@ -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):