From bcaa3cd7798d0a89dcd03ff683907e949eb9aadb Mon Sep 17 00:00:00 2001 From: Bruce Abbott <641138+abbott@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:06:33 -0500 Subject: [PATCH] Removed invalid ` get_value ` method for dictionary call --- packages/jupyter-ai/jupyter_ai/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/jupyter-ai/jupyter_ai/handlers.py b/packages/jupyter-ai/jupyter_ai/handlers.py index 0f02e8a6c..3c9fcdb32 100644 --- a/packages/jupyter-ai/jupyter_ai/handlers.py +++ b/packages/jupyter-ai/jupyter_ai/handlers.py @@ -116,7 +116,7 @@ def get_chat_user(self) -> ChatUser: """Retrieves the current user. If `jupyter_collaboration` is not installed, one is synthesized from the server's current shell environment.""" - collaborative = self.config.ServerApp.jpserver_extensions.get_value({}).get( + collaborative = self.config.ServerApp.jpserver_extensions.get( "jupyter_collaboration", False )