Skip to content

Commit

Permalink
Updating the extension point method to eliminate warning. (#31)
Browse files Browse the repository at this point in the history
```
[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.
```
  • Loading branch information
Zsailer authored Feb 9, 2024
1 parent 75e29b7 commit eb74857
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebook_shim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def _jupyter_server_extension_paths():
def _jupyter_server_extension_points():
return [
{
'module': 'notebook_shim.nbserver',
Expand Down

0 comments on commit eb74857

Please sign in to comment.