Skip to content

Commit d67b592

Browse files
committed
Make linter happy
1 parent e734b90 commit d67b592

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

ingestors/documents/html.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
class HTMLIngestor(Ingestor, EncodingSupport, HTMLSupport):
99
"HTML file ingestor class. Extracts the text from the web page."
10+
1011
MIME_TYPES = ["text/html"]
1112
EXTENSIONS = [
1213
"htm",

ingestors/exc.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
class ProcessingException(Exception):
55
"A data-related error occuring during file processing."
6+
67
pass
78

89

ingestors/support/xml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def get_xml_parser(self, **kwargs):
1717
recover=True,
1818
resolve_entities=False,
1919
no_network=True,
20-
**kwargs
20+
**kwargs,
2121
)
2222

2323
def parse_xml_path(self, file_path, **kwargs):

0 commit comments

Comments
 (0)