Skip to content

Commit c5478aa

Browse files
authored
Removed unused f-string (#273)
1 parent f69a9bc commit c5478aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clip/clip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def _download(url: str, root: str):
6767
loop.update(len(buffer))
6868

6969
if hashlib.sha256(open(download_target, "rb").read()).hexdigest() != expected_sha256:
70-
raise RuntimeError(f"Model has been downloaded but the SHA256 checksum does not not match")
70+
raise RuntimeError("Model has been downloaded but the SHA256 checksum does not not match")
7171

7272
return download_target
7373

0 commit comments

Comments
 (0)