From 8b2515a450ef376b9205029090af0a79c8341bd7 Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Thu, 7 Sep 2017 17:10:49 +0500 Subject: Removed unneeded __init__() methods. --- django/core/files/uploadhandler.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'django/core/files/uploadhandler.py') 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. -- cgit v1.2.1