Skip to content

Commit e0c8db0

Browse files
committed
Drop more python2 stuff
1 parent 22b9f93 commit e0c8db0

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

jupyter_client/asynchronous/client.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,9 @@
22
# Copyright (c) Jupyter Development Team.
33
# Distributed under the terms of the Modified BSD License.
44

5-
from __future__ import print_function
6-
75
from functools import partial
86
from getpass import getpass
9-
try:
10-
from queue import Empty # Python 3
11-
except ImportError:
12-
from Queue import Empty # Python 2
7+
from queue import Empty
138
import sys
149
import time
1510

0 commit comments

Comments
 (0)