Skip to content

Commit 7057e0d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 59fb4e5 commit 7057e0d

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

jupyter_server_proxy/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
from ._version import __version__ # noqa
44
from .api import IconHandler, ServersInfoHandler
55
from .config import ServerProxy as ServerProxyConfig
6-
from .config import get_entrypoint_server_processes, make_handlers, make_server_process
6+
from .config import (get_entrypoint_server_processes, make_handlers,
7+
make_server_process)
78
from .handlers import setup_handlers
89

910

jupyter_server_proxy/config.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
from traitlets import Dict, List, Tuple, Union, default, observe
1515
from traitlets.config import Configurable
1616

17-
from .handlers import AddSlashHandler, NamedLocalProxyHandler, SuperviseAndProxyHandler
17+
from .handlers import (AddSlashHandler, NamedLocalProxyHandler,
18+
SuperviseAndProxyHandler)
1819

1920
try:
2021
# Traitlets >= 4.3.3

jupyter_server_proxy/handlers.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
from simpervisor import SupervisedProcess
1818
from tornado import httpclient, httputil, web
1919
from tornado.simple_httpclient import SimpleAsyncHTTPClient
20-
from traitlets import Bytes, Dict, Instance, Integer, Unicode, Union, default, observe
20+
from traitlets import (Bytes, Dict, Instance, Integer, Unicode, Union, default,
21+
observe)
2122
from traitlets.traitlets import HasTraits
2223

2324
from .unixsock import UnixResolver

0 commit comments

Comments
 (0)