Skip to content

Commit

Permalink
Merge pull request jupyter-server#464 from afshin/backport-5805
Browse files Browse the repository at this point in the history
Remove unnecessary future imports
  • Loading branch information
blink1073 authored Mar 31, 2021
2 parents 3127f9c + d5e36b1 commit 1e7354e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion jupyter_server/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import absolute_import

if __name__ == '__main__':
from jupyter_server import serverapp as app
Expand Down
4 changes: 1 addition & 3 deletions jupyter_server/_sysinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.

from __future__ import absolute_import

import os
import platform
import pprint
Expand Down Expand Up @@ -60,7 +58,7 @@ def pkg_commit_hash(pkg_path):
else:
return u'', u''
par_path = p.dirname(par_path)

return u'', u''


Expand Down
2 changes: 0 additions & 2 deletions jupyter_server/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.

from __future__ import print_function

import asyncio
import errno
import inspect
Expand Down

0 comments on commit 1e7354e

Please sign in to comment.