Skip to content

Commit 8f14833

Browse files
committed
fghd
1 parent 6c05f47 commit 8f14833

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ def test_write_script(project, request, temp_dir, input_filename: str) -> None:
11221122
assert script_path.exists()
11231123
print(script_path.read_text())
11241124
# Test we get the project object we expect when running the script
1125-
with open(script_path, "r") as f:
1125+
with open(script_path) as f:
11261126
exec(f.read())
11271127
print(locals)
11281128
new_project = locals()["problem"]

0 commit comments

Comments
 (0)