We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 970ce5b commit 624b447Copy full SHA for 624b447
tests/conftest.py
@@ -15,7 +15,7 @@ def update_json_file(path: Path, d: dict):
15
with open(path, "rb") as f:
16
package_json = json.load(f)
17
package_json.update(d)
18
- with open(path, "wt") as f:
+ with open(path, "w") as f:
19
json.dump(package_json, f, indent=2)
20
21
0 commit comments