remove unused imports

This commit is contained in:
Steffen Vogel
2020-04-15 23:20:42 +02:00
parent 1f515464fe
commit e93cc83d58
28 changed files with 2 additions and 49 deletions

View File

@@ -2,15 +2,12 @@
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
import asyncio
import codecs
import copy
import time
from collections import defaultdict
from datetime import datetime
from http.client import responses
from jinja2 import TemplateNotFound
from tornado import gen
from tornado import web
from tornado.httputil import url_concat
@@ -464,7 +461,6 @@ class AdminHandler(BaseHandler):
users = self.db.query(orm.User).outerjoin(orm.Spawner).order_by(*ordered)
users = [self._user_from_orm(u) for u in users]
from itertools import chain
running = []
for u in users: