Skip to content

Commit

Permalink
pep8 💄
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean Malmgren committed Oct 9, 2015
1 parent a4fa207 commit 891559a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion textract/parsers/pdf_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ def extract_pdftotext(self, filename, **kwargs):
layout = '-layout'
else:
layout = ''
stdout, _ = self.run('pdftotext %(layout)s "%(filename)s" -' % locals())
stdout, _ = self.run(
'pdftotext %(layout)s "%(filename)s" -' % locals()
)
return stdout

def extract_pdfminer(self, filename, **kwargs):
Expand Down

0 comments on commit 891559a

Please sign in to comment.