Skip to content
Snippets Groups Projects
Commit 8101c372 authored by Julien (jvoisin) Voisin's avatar Julien (jvoisin) Voisin
Browse files

Make pylint happier

parent 1477d4f4
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,8 @@ import xml.etree.ElementTree as ET # type: ignore ...@@ -7,6 +7,8 @@ import xml.etree.ElementTree as ET # type: ignore
from .archive import ArchiveBasedAbstractParser from .archive import ArchiveBasedAbstractParser
# pylint: disable=line-too-long
# Make pyflakes happy # Make pyflakes happy
assert Set assert Set
assert Pattern assert Pattern
...@@ -36,7 +38,9 @@ class MSOfficeParser(ArchiveBasedAbstractParser): ...@@ -36,7 +38,9 @@ class MSOfficeParser(ArchiveBasedAbstractParser):
'word/fontTable.xml', 'word/fontTable.xml',
'word/settings.xml', 'word/settings.xml',
'word/styles.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 files_to_omit = set(map(re.compile, { # type: ignore
'word/webSettings.xml', 'word/webSettings.xml',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment