Skip to content

Commit

Permalink
style: run linter
Browse files Browse the repository at this point in the history
  • Loading branch information
anjakefala committed Oct 25, 2023
1 parent ecde463 commit 7dc5032
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/pyarrow/tests/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -1938,7 +1938,7 @@ def test_write_quoting_style():
except Exception as e:
# This will trigger when we try to write a comma (,)
# without quotes, which is invalid
assert isinstance(e, res)
assert type(e) is res
break
assert buf.getvalue() == res
buf.seek(0)
Expand Down Expand Up @@ -1988,7 +1988,6 @@ def test_large_binary_write_to_csv(tmpdir, data_size):

write_options = WriteOptions(include_header=True, batch_size=2048,
delimiter='|')

write_csv(fixed_table, file_name, write_options=write_options)

assert os.path.exists(file_name)
Expand Down

0 comments on commit 7dc5032

Please sign in to comment.