Skip to content

Commit 1bfaf7d

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

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

glue_jupyterlab/glue_ydoc.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ def observe(self, callback: Callable[[str, Any], None]):
154154
self._subscriptions[self._ytabs] = self._ytabs.observe_deep(
155155
partial(callback, "tabs")
156156
)
157-
self._subscriptions[
158-
self._yprivate_messages
159-
] = self._yprivate_messages.observe_deep(partial(callback, "private_messages"))
157+
self._subscriptions[self._yprivate_messages] = (
158+
self._yprivate_messages.observe_deep(partial(callback, "private_messages"))
159+
)
160160

161161
def get_tab_names(self) -> List[str]:
162162
return list(self._ytabs.keys())

ui-tests/jupyter_server_test_config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
opens the server to the world and provide access to JupyterLab
55
JavaScript objects through the global window variable.
66
"""
7+
78
from jupyterlab.galata import configure_jupyter_server
89

910
configure_jupyter_server(c) # noqa

0 commit comments

Comments
 (0)