cleanup: Remove unused imports.

Generated by autoflake.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg 2020-04-18 16:00:35 -07:00 committed by Tim Abbott
parent 64d2f5ac32
commit 2f6623bbc4
61 changed files with 25 additions and 91 deletions

View file

@ -6,7 +6,6 @@ import os
import traceback
import signal
from types import FrameType
from typing import Any
from zulip import RandomExponentialBackoff
def die(signal: int, frame: FrameType) -> None:

View file

@ -40,19 +40,14 @@
from typing import Dict, List, Set, Optional
import logging
import threading
import optparse
from sleekxmpp import ClientXMPP, InvalidJID, JID
from sleekxmpp.stanza import Message as JabberMessage
from sleekxmpp.exceptions import IqError, IqTimeout
from configparser import SafeConfigParser
import getpass
import os
import sys
import zulip
from zulip import Client
import re
from typing import Any, Callable
__version__ = "1.1"