python: Sort imports in smaller apps.

This commit is contained in:
Tim Abbott
2017-11-15 15:55:49 -08:00
parent dc8dd2333c
commit 2b43a0302a
49 changed files with 189 additions and 210 deletions

View File

@@ -1,9 +1,11 @@
from argparse import ArgumentParser
from typing import Any
from argparse import ArgumentParser
from django.core.management.base import BaseCommand
from django.db.models import Q
from zerver.models import Realm, Stream, Message, Subscription, Recipient, get_realm
from zerver.models import Message, Realm, \
Recipient, Stream, Subscription, get_realm
class Command(BaseCommand):
help = "Generate statistics on the streams for a realm."