Skip to content

Commit

Permalink
fix: make table reader/depending modules work in Py 3.8/3.9 (#5913)
Browse files Browse the repository at this point in the history
Fixes #5912
  • Loading branch information
jmao-denver authored Aug 6, 2024
1 parent 501f3fb commit cfcb494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/server/deephaven/_table_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _table_reader_all(table: Table, cols: Optional[Union[str, Sequence[str]]] =


def _table_reader_all_dict(table: Table, cols: Optional[Union[str, Sequence[str]]] = None, *, row_set: jpy.JType,
prev: bool = False, to_numpy: bool = True) -> Dict[str, Union[np.ndarray | jpy.JType]]:
prev: bool = False, to_numpy: bool = True) -> Dict[str, Union[np.ndarray, jpy.JType]]:
""" Reads all the rows in the given row set of a table into a dictionary. The dictionary is a map of column names
to numpy arrays or Java arrays.
Expand Down

0 comments on commit cfcb494

Please sign in to comment.