diff options
-rw-r--r-- | wkhtmltopdf/utils.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/wkhtmltopdf/utils.py b/wkhtmltopdf/utils.py index f95eddf..99998a2 100644 --- a/wkhtmltopdf/utils.py +++ b/wkhtmltopdf/utils.py @@ -1,16 +1,13 @@ from __future__ import absolute_import from copy import copy +from functools import wraps from itertools import chain -from os import fdopen import os import sys -from tempfile import mkstemp import urllib from django.conf import settings -from django.template import loader -from django.utils.encoding import smart_str from .subprocess import check_output |