Skip to content

Commit

Permalink
[fix] fix pyright err (#18048)
Browse files Browse the repository at this point in the history
## Summary & Motivation

## How I Tested These Changes
  • Loading branch information
benpankow authored Nov 15, 2023
1 parent 4274377 commit f696d29
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,7 @@ def handle_output(
TableSchema(
columns=[
TableColumn(name=name, type=str(dtype))
for name, dtype in zip( # type: ignore pyarrow does not expose types
reader.schema.names,
reader.schema.types,
)
for name, dtype in zip(reader.schema.names, reader.schema.types) # type: ignore pyarrow does not expose types
]
)
),
Expand Down

0 comments on commit f696d29

Please sign in to comment.