Skip to content

Commit 624b447

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 970ce5b commit 624b447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def update_json_file(path: Path, d: dict):
1515
with open(path, "rb") as f:
1616
package_json = json.load(f)
1717
package_json.update(d)
18-
with open(path, "wt") as f:
18+
with open(path, "w") as f:
1919
json.dump(package_json, f, indent=2)
2020

2121

0 commit comments

Comments
 (0)