diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2019-04-24 04:09:29 -0700 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-04-24 13:09:29 +0200 |
| commit | 8b3f1c35dd848678225e8634d6880efeeab5e796 (patch) | |
| tree | 2a530f7d0e970b1ae008c0a3f5f2c0b7082e65a1 /django/http/multipartparser.py | |
| parent | 80482e924953ec0e2484a9cb0f44bd5eeea93856 (diff) | |
Removed unnecessary assignments in various code.
Diffstat (limited to 'django/http/multipartparser.py')
| -rw-r--r-- | django/http/multipartparser.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/http/multipartparser.py b/django/http/multipartparser.py index 07a1d676ee..96e22f69b9 100644 --- a/django/http/multipartparser.py +++ b/django/http/multipartparser.py @@ -360,8 +360,7 @@ class LazyStream: remaining -= len(emitting) yield emitting - out = b''.join(parts()) - return out + return b''.join(parts()) def __next__(self): """ |
