Finish purging 'fromt typing import *' from Zulip codebase.

This commit is contained in:
Tim Abbott 2016-04-07 14:11:21 -07:00
parent 4e1060076d
commit a1b306f9ce
8 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
from __future__ import absolute_import
from __future__ import division
from typing import *
from typing import Any, Dict, List, Tuple
from django.db import connection
from django.template import RequestContext, loader

View File

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
from __future__ import print_function
from typing import *
from typing import Any, Generator, List, Tuple
import os
import sys

View File

@ -37,7 +37,7 @@
# | other sender| x | | |
# public mode +-------------+-----+----+--------+----
# | self sender | | | |
from typing import *
from typing import Set
import logging
import threading

View File

@ -1,5 +1,5 @@
from __future__ import print_function
from typing import *
from typing import Any, Dict, List
# This is hacky code to analyze data on our support stream. The main
# reusable bits are get_recent_messages and get_words.

View File

@ -21,7 +21,7 @@
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from __future__ import absolute_import
from typing import *
from typing import Any, List
import sys
from six.moves import map

View File

@ -2,7 +2,7 @@
# Copyright: (c) 2008, Jarek Zgoda <jarek.zgoda@gmail.com>
from typing import *
from typing import Any, Dict
__revision__ = '$Id: settings.py 12 2008-11-23 19:38:52Z jarek.zgoda $'

View File

@ -30,7 +30,7 @@ import glob
import os
from optparse import make_option
from six.moves import range
from typing import *
from typing import Any, Dict, Set, Tuple
settings.TORNADO_SERVER = None

View File

@ -1,5 +1,5 @@
from __future__ import absolute_import
from typing import *
from typing import Any, Dict
from optparse import make_option
from django.core.management.base import BaseCommand