aboutsummaryrefslogtreecommitdiff
path: root/src/IRCLine.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/IRCLine.py')
-rw-r--r--src/IRCLine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCLine.py b/src/IRCLine.py
index d388b463..538c0a5e 100644
--- a/src/IRCLine.py
+++ b/src/IRCLine.py
@@ -40,7 +40,7 @@ class Hostmask(object):
class ParsedLine(object):
def __init__(self, command: str, args: typing.List[str],
prefix: Hostmask=None,
- tags: typing.Dict[str, str]={}):
+ tags: typing.Dict[str, str]=None):
self.command = command
self._args = args
self.args = IRCArgs(args)