Skip to content

Commit

Permalink
Add type to supported_features
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 committed Nov 18, 2024
1 parent 1cf373b commit 8298e05
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions ipykernel/kernelbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -880,24 +880,23 @@ async def connect_request(self, socket, ident, parent):

@property
def kernel_info(self):
info = {
from .debugger import _is_debugpy_available

supported_features: list[str] = []
if self._supports_kernel_subshells:
supported_features.append("kernel subshells")
if _is_debugpy_available:
supported_features.append("debugger")

return {
"protocol_version": kernel_protocol_version,
"implementation": self.implementation,
"implementation_version": self.implementation_version,
"language_info": self.language_info,
"banner": self.banner,
"help_links": self.help_links,
"supported_features": [],
"supported_features": supported_features
}
if self._supports_kernel_subshells:
info["supported_features"] = ["kernel subshells"]

from .debugger import _is_debugpy_available

if _is_debugpy_available:
info["supported_features"].append("debugger")

return info

async def kernel_info_request(self, socket, ident, parent):
"""Handle a kernel info request."""
Expand Down

0 comments on commit 8298e05

Please sign in to comment.