python: Remove unused imports.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg
2019-02-22 15:47:38 -08:00
committed by Tim Abbott
parent 8821b5a903
commit 649235cfec
13 changed files with 8 additions and 22 deletions

View File

@@ -7,7 +7,7 @@ from mimetypes import guess_type
from zerver.models import UserProfile, Attachment, RealmEmoji
from zerver.lib.avatar_hash import user_avatar_path
from zerver.lib.upload import read_local_file, S3UploadBackend, upload_image_to_s3
from zerver.lib.upload import S3UploadBackend, upload_image_to_s3
from zerver.lib.parallel import run_parallel
s3backend = S3UploadBackend()