diff options
author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2017-09-07 17:10:49 +0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2017-09-07 08:10:49 -0400 |
commit | 8b2515a450ef376b9205029090af0a79c8341bd7 (patch) | |
tree | 491da78cdf4b8aa3d1704fa90ebd6aa7d4a6b25e /django/core/files/uploadhandler.py | |
parent | 44a6c27fd461e1d2f37388c26c629f8f170e8722 (diff) | |
download | django-8b2515a450ef376b9205029090af0a79c8341bd7.tar.gz |
Removed unneeded __init__() methods.
Diffstat (limited to 'django/core/files/uploadhandler.py')
-rw-r--r-- | django/core/files/uploadhandler.py | 3 |
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. |