summaryrefslogtreecommitdiff
path: root/plugins/code.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2018-08-15 13:24:11 +0200
committermathieui <mathieui@mathieui.net>2018-08-15 13:24:11 +0200
commitb6e23355f1be8f02ab1e5284e65991382be76dbc (patch)
tree9cfb9d49eec87ac0ffca7b5d0e15df5a404cf37c /plugins/code.py
parent6e13b8b73572f9c0ac9b5c683b98a475afbeab38 (diff)
downloadpoezio-b6e23355f1be8f02ab1e5284e65991382be76dbc.tar.gz
poezio-b6e23355f1be8f02ab1e5284e65991382be76dbc.tar.bz2
poezio-b6e23355f1be8f02ab1e5284e65991382be76dbc.tar.xz
poezio-b6e23355f1be8f02ab1e5284e65991382be76dbc.zip
Make pylint happy on plugins
It does not like dynamically defined attributes, unsurprisingly
Diffstat (limited to 'plugins/code.py')
-rw-r--r--plugins/code.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/code.py b/plugins/code.py
index 1c0679f2..fa04f758 100644
--- a/plugins/code.py
+++ b/plugins/code.py
@@ -27,7 +27,7 @@ from poezio.plugin import BasePlugin
from pygments import highlight
from pygments.lexers import get_lexer_by_name
-from pygments.formatters import HtmlFormatter
+from pygments.formatters import HtmlFormatter #pylint: disable=no-name-in-module
FORMATTER = HtmlFormatter(nowrap=True, noclasses=True)