Skip to content

Commit 750010a

Browse files
committed
BUG: Corrected suggestions by pre-commit (pandas-dev#39701)
1 parent b63051f commit 750010a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/util/test_show_versions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def test_show_versions(capsys, as_json, tmpdir):
6565
# make sure that the file was created
6666
assert os.path.exists(as_json)
6767

68-
with open(as_json, "r") as fd:
68+
with open(as_json) as fd:
6969
contents = fd.readlines()
7070
str_contents = "".join(contents)
7171

0 commit comments

Comments
 (0)