Skip to content

Commit bef2052

Browse files
committed
resolve python lint check failure
1 parent b529ea2 commit bef2052

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

python/pyarrow/tests/test_csv.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1396,7 +1396,8 @@ def test_column_types_with_column_names(self):
13961396
def test_default_column_type(self):
13971397
rows = b"a,b,c,d\n001,2.5,hello,true\n4,3.14,world,false\n"
13981398

1399-
# Test with default_column_type only - all columns should use the specified type.
1399+
# Test with default_column_type only -
1400+
# all columns should use the specified type.
14001401
opts = ConvertOptions(default_column_type=pa.string())
14011402
table = self.read_bytes(rows, convert_options=opts)
14021403
schema = pa.schema([('a', pa.string()),

0 commit comments

Comments
 (0)