Skip to content

Commit 79b455b

Browse files
committed
format
1 parent ca10164 commit 79b455b

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

scripts/bundle_resources.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ def resource_hashes() -> None:
3737
for line in lines:
3838
if "This file was automatically generated" in line:
3939
# replace the version number with {VERSION}:
40-
new_line = re.sub(
41-
r"PreTeXt {VERSION}", f"PreTeXt {VERSION}", line
42-
)
40+
new_line = re.sub(r"PreTeXt {VERSION}", f"PreTeXt {VERSION}", line)
4341
f.write(new_line)
4442
elif '"image": "pretextbook/pretext' in line:
4543
new_line = re.sub(

0 commit comments

Comments
 (0)