Skip to content

Commit b9a0f13

Browse files
committed
fix lint
1 parent b4a1780 commit b9a0f13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/parser/test_na_values.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -431,8 +431,8 @@ def test_na_values_with_dtype_str_and_na_filter(all_parsers, na_filter):
431431
def test_cast_NA_to_bool_raises_error(all_parsers, data):
432432
parser = all_parsers
433433
msg = ("(Bool column has NA values in column [0a])|"
434-
"(cannot safely convert passed user dtype of "
435-
" bool for object dtyped data in column 0)")
434+
"(cannot safely convert passed user dtype of "
435+
" bool for object dtyped data in column 0)")
436436
with pytest.raises(ValueError, match=msg):
437437
parser.read_csv(StringIO(data), header=None, names=['a', 'b'],
438438
dtype={'a': 'bool'})

0 commit comments

Comments
 (0)