diff options
| author | 2018-11-04 17:01:50 +0000 | |
|---|---|---|
| committer | 2018-11-04 17:01:50 +0000 | |
| commit | e1d261bda0d2eccc7fd3cc0d36abdad882b8c9bc (patch) | |
| tree | 60e65d5032e2afe315a67e5fda88582d7c267cb2 /src | |
| parent | Change line parsing to put arbitrary-length args on the end of (diff) | |
| signature | ||
Fix typo in utils.irc
Diffstat (limited to 'src')
| -rw-r--r-- | src/utils/irc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/irc.py b/src/utils/irc.py index 99a53d86..9eb8e06b 100644 --- a/src/utils/irc.py +++ b/src/utils/irc.py @@ -54,7 +54,7 @@ def seperate_hostmask(hostmask: str) -> IRCHostmask: class IRCLine(object): def __init__(self, tags: dict, prefix: typing.Optional[str], command: str, - args: IRCArgs, + args: IRCArgs): self.tags = tags self.prefix = prefix self.command = command |
