management: Remove unused imports from process_queue.

This commit is contained in:
Vishnu Ks
2017-08-07 19:47:01 +00:00
committed by Tim Abbott
parent 0532b35c43
commit 1b0b135bfc

View File

@@ -5,16 +5,13 @@ from typing import Any, List
from argparse import ArgumentParser from argparse import ArgumentParser
from django.core.management.base import BaseCommand from django.core.management.base import BaseCommand
from django.core.management import CommandError
from django.conf import settings from django.conf import settings
from django.utils import autoreload from django.utils import autoreload
from zerver.worker.queue_processors import get_worker, get_active_worker_queues from zerver.worker.queue_processors import get_worker, get_active_worker_queues
import os
import sys import sys
import signal import signal
import logging import logging
import threading import threading
import subprocess
class Command(BaseCommand): class Command(BaseCommand):
def add_arguments(self, parser): def add_arguments(self, parser):