diff options
| author | 2018-10-30 17:49:35 +0000 | |
|---|---|---|
| committer | 2018-10-30 17:49:35 +0000 | |
| commit | b543e31cd2a665b25aab4554e46a0ed5067d1bfe (patch) | |
| tree | 285e0b52f45e167dbc381951482c7bff660c6630 /src/IRCBuffer.py | |
| parent | Typo in src/Exports; 'self_exports' -> 'self.exports' (diff) | |
Fix/refactor issues brought up by type hint linting
Diffstat (limited to 'src/IRCBuffer.py')
| -rw-r--r-- | src/IRCBuffer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCBuffer.py b/src/IRCBuffer.py index 24fde7bf..426e15e9 100644 --- a/src/IRCBuffer.py +++ b/src/IRCBuffer.py @@ -1,5 +1,5 @@ import re, typing -from src import IRCBot, utils +from src import IRCBot, IRCServer, utils class BufferLine(object): def __init__(self, sender: str, message: str, action: bool, tags: dict, |
