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.
extension_manager.any_activity
1 parent 2fcd759 commit 73d5776Copy full SHA for 73d5776
jupyter_server/extension/manager.py
@@ -404,6 +404,7 @@ async def stop_all_extensions(self):
404
405
def any_activity(self):
406
"""Check for any activity currently happening across all extension applications."""
407
- for _, app in sorted(dict(self.extension_apps).items()):
408
- if app.current_activity():
409
- return True
+ for _, apps in sorted(dict(self.extension_apps).items()):
+ for app in apps:
+ if app.current_activity():
410
+ return True
0 commit comments