Skip to content

Commit e3bc03e

Browse files
Fix lint errors
1 parent 38308e7 commit e3bc03e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pandas/tests/io/test_parquet.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1135,11 +1135,13 @@ def test_non_nanosecond_timestamps(self, tmp_path, pa):
11351135
# GH#49236
11361136
#
11371137
# pandas 1.x didn't support non-nanosecond datetimes.
1138-
# pyarrow.Table.to_pandas supports timestamp_as_object param to solve that issue:
1138+
# pyarrow.Table.to_pandas supports timestamp_as_object param to solve that issue
11391139
# https://arrow.apache.org/docs/python/generated/pyarrow.Table.html#pyarrow.Table.to_pandas
11401140
#
1141-
# This test tests that the current version of pandas supports non-nanosecond (microsecond in this case) datetimes,
1142-
# the code example from GH#49236 doesn't fail anymore, and timestamp_as_object is not needed.
1141+
# This test tests that the current version of pandas
1142+
# supports non-nanosecond (microsecond in this case) datetimes,
1143+
# the code example from GH#49236 doesn't fail anymore,
1144+
# and timestamp_as_object param is not needed.
11431145
import pyarrow as pa
11441146
import pyarrow.parquet as pq
11451147

0 commit comments

Comments
 (0)