Skip to content

Commit

Permalink
remove type hint change that is not supported in older python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shibbas authored and jonsequitur committed Apr 7, 2023
1 parent 89c9d3b commit b21a968
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit b21a968

Please sign in to comment.