Skip to content

Commit e874410

Browse files
committed
fix extraneous backslash
1 parent cda39a6 commit e874410

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/util/validators.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,6 @@ def validate_args_and_kwargs(fname, args, kwargs,
219219
def validate_bool_kwarg(value, arg_name):
220220
""" Ensures that argument passed in arg_name is of type bool. """
221221
if not (is_bool(value) or value is None):
222-
raise ValueError('For argument "%s" expected type bool, ' % arg_name +\
222+
raise ValueError('For argument "%s" expected type bool, ' % arg_name +
223223
'received type %s.' % type(value).__name__)
224224
return value

0 commit comments

Comments
 (0)