We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f56515e commit 7106c1fCopy full SHA for 7106c1f
jupyter_server/services/contents/handlers.py
@@ -294,7 +294,7 @@ class TrustNotebooksHandler(JupyterHandler):
294
@web.authenticated
295
async def post(self,path=''):
296
cm = self.contents_manager
297
- await cm.trust_notebook(path)
+ await ensure_async(cm.trust_notebook(path))
298
self.set_status(201)
299
self.finish()
300
#-----------------------------------------------------------------------------
0 commit comments