From 46aca10a72f744d05909b68d8cd0e7878e316de5 Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Sat, 3 Feb 2018 14:49:01 +0000 Subject: [PATCH] No need to explicitly extend object --- src/documents/parsers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/parsers.py b/src/documents/parsers.py index c11501487..03ce74921 100644 --- a/src/documents/parsers.py +++ b/src/documents/parsers.py @@ -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.