No need to explicitly extend object

This commit is contained in:
Daniel Quinn 2018-02-03 14:49:01 +00:00
parent 910a08f8c9
commit 648e7b6d4f

View File

@ -9,7 +9,7 @@ class ParseError(Exception):
pass
class DocumentParser(object):
class DocumentParser:
"""
Subclass this to make your own parser. Have a look at
`paperless_tesseract.parsers` for inspiration.