Skip to content

Commit 9d79ef9

Browse files
authored
Merge pull request #464 from afshin/backport-5805
Remove unnecessary future imports
2 parents 3f66c16 + 0db8cb2 commit 9d79ef9

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

jupyter_server/__main__.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from __future__ import absolute_import
21

32
if __name__ == '__main__':
43
from jupyter_server import serverapp as app

jupyter_server/_sysinfo.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
# Copyright (c) Jupyter Development Team.
77
# Distributed under the terms of the Modified BSD License.
88

9-
from __future__ import absolute_import
10-
119
import os
1210
import platform
1311
import pprint
@@ -60,7 +58,7 @@ def pkg_commit_hash(pkg_path):
6058
else:
6159
return u'', u''
6260
par_path = p.dirname(par_path)
63-
61+
6462
return u'', u''
6563

6664

jupyter_server/utils.py

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

6-
from __future__ import print_function
7-
86
import asyncio
97
import errno
108
import inspect

0 commit comments

Comments
 (0)