From 8101c372e10fa7c9aebd0546bdf8c345640d698d Mon Sep 17 00:00:00 2001 From: jvoisin <julien.voisin@dustri.org> Date: Thu, 20 Sep 2018 22:43:22 +0200 Subject: [PATCH] Make pylint happier --- libmat2/office.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libmat2/office.py b/libmat2/office.py index 70b879a..7c893f3 100644 --- a/libmat2/office.py +++ b/libmat2/office.py @@ -7,6 +7,8 @@ import xml.etree.ElementTree as ET # type: ignore from .archive import ArchiveBasedAbstractParser +# pylint: disable=line-too-long + # Make pyflakes happy assert Set assert Pattern @@ -36,7 +38,9 @@ class MSOfficeParser(ArchiveBasedAbstractParser): 'word/fontTable.xml', 'word/settings.xml', 'word/styles.xml', - 'word/stylesWithEffects.xml', # https://msdn.microsoft.com/en-us/library/dd908153(v=office.12).aspx + + # https://msdn.microsoft.com/en-us/library/dd908153(v=office.12).aspx + 'word/stylesWithEffects.xml', } files_to_omit = set(map(re.compile, { # type: ignore 'word/webSettings.xml', -- GitLab