Skip to content

Commit ec32bea

Browse files
committed
Fix %s call
1 parent bf6edd7 commit ec32bea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

replicate/use.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def _resolve_ref(obj: Any) -> Any:
213213
def _log_prediction_url(id: str) -> None:
214214
if os.environ.get("R8_LOG_PREDICTION_URL") != "1":
215215
return
216-
print("Running prediction https://replicate.com/p/%s", id)
216+
print(f"Running prediction https://replicate.com/p/{id}")
217217

218218

219219
T = TypeVar("T")

0 commit comments

Comments
 (0)