We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
xrange
range
1 parent 9ab2117 commit 6ddecf4Copy full SHA for 6ddecf4
inject_javascript/__init__.py
@@ -55,7 +55,7 @@ def return_pdf_data(self, pdf_path = None):
55
source_pdf_data = PdfFileReader(fb)
56
57
## Load source PDF into output object
58
- for i in xrange(source_pdf_data.getNumPages()):
+ for i in range(source_pdf_data.getNumPages()):
59
writable_pdf_data.addPage(source_pdf_data.getPage(i))
60
61
if self.verbose > 0:
0 commit comments