summaryrefslogtreecommitdiff
path: root/poezio/tabs
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2019-10-27 20:02:13 +0100
committermathieui <mathieui@mathieui.net>2019-10-27 20:02:13 +0100
commit5928f02bfc855fe3570e7916aa00a48cca9b6ef8 (patch)
tree654d2353758dac3a41224d8f8b522a7779f21cd5 /poezio/tabs
parentabe1941abfd5d0be8517f1a1a8de8ccd2ad0766b (diff)
downloadpoezio-5928f02bfc855fe3570e7916aa00a48cca9b6ef8.tar.gz
poezio-5928f02bfc855fe3570e7916aa00a48cca9b6ef8.tar.bz2
poezio-5928f02bfc855fe3570e7916aa00a48cca9b6ef8.tar.xz
poezio-5928f02bfc855fe3570e7916aa00a48cca9b6ef8.zip
Disable pylint on lines dedicated to mypy
Pylint doesn’t read the typeshed.
Diffstat (limited to 'poezio/tabs')
-rw-r--r--poezio/tabs/basetabs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/tabs/basetabs.py b/poezio/tabs/basetabs.py
index 2efc77a0..4b8a261f 100644
--- a/poezio/tabs/basetabs.py
+++ b/poezio/tabs/basetabs.py
@@ -44,7 +44,7 @@ from poezio.windows.funcs import truncate_nick
from slixmpp import JID, InvalidJID, Message
if TYPE_CHECKING:
- from _curses import _CursesWindow
+ from _curses import _CursesWindow # pylint: disable=E0611
log = logging.getLogger(__name__)