Skip to content

Commit 3f29d8d

Browse files
black fixes
1 parent efb5b72 commit 3f29d8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/parser/test_common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,7 @@ def test_no_permission(all_parsers):
975975

976976
msg = r"\[Errno 13\]"
977977
with tm.ensure_clean() as path:
978-
os.chmod(path, 0) # make file unreadable
978+
os.chmod(path, 0) # make file unreadable
979979
with pytest.raises(PermissionError, match=msg) as e:
980980
parser.read_csv(path)
981981
assert path == e.value.filename

0 commit comments

Comments
 (0)