Skip to content

Commit

Permalink
refactor: remove unnecessary f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-vincent committed Mar 13, 2024
1 parent ad2ae11 commit 5dc4916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/endstone/_internal/bootstrap/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def _download(self, dst: Union[str, os.PathLike], url: str, sha256: str) -> None
f.write(data)
m.update(data)

self._logger.info(f"Download complete. Verifying integrity...")
self._logger.info("Download complete. Verifying integrity...")
if m.hexdigest() != sha256:
raise ValueError("SHA256 mismatch: the downloaded file may be corrupted or tampered with.")

Expand Down

0 comments on commit 5dc4916

Please sign in to comment.