zerver/tests: Remove unused imports.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg
2019-02-02 14:53:44 -08:00
committed by Tim Abbott
parent f0ecb93515
commit 3127fb4dbd
59 changed files with 76 additions and 248 deletions

View File

@@ -1,13 +1,11 @@
# -*- coding: utf-8 -*-
from unittest import mock
from mock import patch
from typing import Any, Dict, Tuple, Optional
from zerver.lib.bot_lib import EmbeddedBotQuitException, EmbeddedBotHandler
from zerver.lib.bot_lib import EmbeddedBotQuitException
from zerver.lib.test_classes import ZulipTestCase
from zerver.models import (
UserProfile, Recipient, get_display_recipient,
UserProfile, get_display_recipient,
get_service_profile, get_user, get_realm
)