We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49c1a92 commit 36b43f2Copy full SHA for 36b43f2
tests/system/load/test_large_tables.py
@@ -94,8 +94,7 @@ def test_to_pandas_large_table():
94
# df will be downloaded locally
95
expected_row_count, expected_column_count = df.shape
96
97
- # TODO(b/340893653): fix type error
98
- df = df.to_pandas() # type: ignore
99
- row_count, column_count = df.shape
+ df_converted = df.to_pandas()
+ row_count, column_count = df_converted.shape
100
assert column_count == expected_column_count
101
assert row_count == expected_row_count
0 commit comments