diff options
| author | 2019-02-10 23:51:28 +0000 | |
|---|---|---|
| committer | 2019-02-10 23:51:28 +0000 | |
| commit | ecb197858ed7ed573aa6f42c91381c6b485a9995 (patch) | |
| tree | c2acd46ab9f33894266b5478cf103c93cc6303bc | |
| parent | Add a comment as to why IRCLine's LINE_CUTOFF is 470, not 510 (diff) | |
| signature | ||
Import IRCServer in IRCLine so type hint comment is valid (src/IRCLine.py)
| -rw-r--r-- | src/IRCLine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IRCLine.py b/src/IRCLine.py index 2b1eb63d..360faa17 100644 --- a/src/IRCLine.py +++ b/src/IRCLine.py @@ -1,5 +1,5 @@ import datetime, typing -from src import IRCObject, utils +from src import IRCObject, IRCServer, utils # this should be 510 (RFC1459, 512 with \r\n) but a server BitBot uses is broken LINE_CUTOFF = 470 |
