Skip to content

Commit 158b723

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent bcb6605 commit 158b723

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

jupyter_remote_desktop_proxy/server_extension.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ def load_jupyter_server_extension(server_app):
1515
"""
1616
base_url = server_app.web_app.settings["base_url"]
1717

18-
jupyter_remote_desktop_endpoints = os.getenv('JUPYTER_REMOTE_DESKTOP_ENDPOINTS', 'desktopvnc')
18+
jupyter_remote_desktop_endpoints = os.getenv(
19+
'JUPYTER_REMOTE_DESKTOP_ENDPOINTS', 'desktopvnc'
20+
)
1921
endpoints = jupyter_remote_desktop_endpoints.split(',')
2022
for endpoint in endpoints:
2123
server_app.web_app.add_handlers(

jupyter_remote_desktop_proxy/templates/index.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
Chrome Frame. -->
1414
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
1515

16-
<link href="{{ base_url }}desktopvnc/static/dist/index.css" rel="stylesheet" />
16+
<link
17+
href="{{ base_url }}desktopvnc/static/dist/index.css"
18+
rel="stylesheet"
19+
/>
1720
</head>
1821

1922
<body>

0 commit comments

Comments
 (0)