Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove type hint change that is not supported in older python versions #2896

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def __init__(self, name, value, formattedValue: FormattedValue):
self.formattedValue = formattedValue

class ValueInfosProduced(KernelEvent):
def __init__(self, valueInfos: list[KernelValueInfo]):
def __init__(self, valueInfos):
self.valueInfos = valueInfos

class Envelope:
Expand Down
2 changes: 1 addition & 1 deletion src/polyglot-notebooks-vscode-insiders/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The following languages are supported by Polyglot Notebooks:
- Notebook-friendly diffing tool that makes it easy to visually compare inputs, outputs, and metadata
- Navigate via Outline View
- Customizable notebook layout
- Connect to Python and R Jupyter kernels installed locally or remotely and share variables between them.
- Connect to Python (3.7+) and R Jupyter kernels installed locally or remotely and share variables between them.

## Getting Started

Expand Down
2 changes: 1 addition & 1 deletion src/polyglot-notebooks-vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The following languages are supported by Polyglot Notebooks:
- Notebook-friendly diffing tool that makes it easy to visually compare inputs, outputs, and metadata
- Navigate via Outline View
- Customizable notebook layout
- Connect to Python and R Jupyter kernels installed locally or remotely and share variables between them.
- Connect to Python (3.7+) and R Jupyter kernels installed locally or remotely and share variables between them.

## Getting Started

Expand Down