summaryrefslogtreecommitdiff
path: root/django/core/files/uploadhandler.py
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2017-09-07 17:10:49 +0500
committerTim Graham <timograham@gmail.com>2017-09-07 08:10:49 -0400
commit8b2515a450ef376b9205029090af0a79c8341bd7 (patch)
tree491da78cdf4b8aa3d1704fa90ebd6aa7d4a6b25e /django/core/files/uploadhandler.py
parent44a6c27fd461e1d2f37388c26c629f8f170e8722 (diff)
downloaddjango-8b2515a450ef376b9205029090af0a79c8341bd7.tar.gz
Removed unneeded __init__() methods.
Diffstat (limited to 'django/core/files/uploadhandler.py')
-rw-r--r--django/core/files/uploadhandler.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/core/files/uploadhandler.py b/django/core/files/uploadhandler.py
index 5e993d13e2..a0f34b741c 100644
--- a/django/core/files/uploadhandler.py
+++ b/django/core/files/uploadhandler.py
@@ -132,9 +132,6 @@ class TemporaryFileUploadHandler(FileUploadHandler):
"""
Upload handler that streams data into a temporary file.
"""
- def __init__(self, *args, **kwargs):
- super().__init__(*args, **kwargs)
-
def new_file(self, *args, **kwargs):
"""
Create the file object to append to as data is coming in.