Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 1, 2024
1 parent f094153 commit 2076375
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions glue_jupyterlab/glue_ydoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ def observe(self, callback: Callable[[str, Any], None]):
self._subscriptions[self._ytabs] = self._ytabs.observe_deep(
partial(callback, "tabs")
)
self._subscriptions[
self._yprivate_messages
] = self._yprivate_messages.observe_deep(partial(callback, "private_messages"))
self._subscriptions[self._yprivate_messages] = (
self._yprivate_messages.observe_deep(partial(callback, "private_messages"))
)

def get_tab_names(self) -> List[str]:
return list(self._ytabs.keys())
Expand Down
1 change: 1 addition & 0 deletions ui-tests/jupyter_server_test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
opens the server to the world and provide access to JupyterLab
JavaScript objects through the global window variable.
"""

from jupyterlab.galata import configure_jupyter_server

configure_jupyter_server(c) # noqa
Expand Down

0 comments on commit 2076375

Please sign in to comment.