Skip to content

Commit eb74857

Browse files
authored
Updating the extension point method to eliminate warning. (#31)
``` [W 2024-02-08 15:26:50.519 ServerApp] A `_jupyter_server_extension_points` function was not found in notebook_shim. Instead, a `_jupyter_server_extension_paths` function was found and will be used for now. This function name will be deprecated in future releases of Jupyter Server. ```
1 parent 75e29b7 commit eb74857

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebook_shim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
def _jupyter_server_extension_paths():
1+
def _jupyter_server_extension_points():
22
return [
33
{
44
'module': 'notebook_shim.nbserver',

0 commit comments

Comments
 (0)