From 618bec0107b62473327d84f5675a2a1743754188 Mon Sep 17 00:00:00 2001 From: Abe Hanoka Date: Mon, 6 Feb 2023 08:26:48 -0500 Subject: [PATCH] docs(downloads): add missing await to python-async snippet (#20663) fixes #20662 --------- Signed-off-by: Max Schmitt Co-authored-by: Max Schmitt --- docs/src/downloads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/downloads.md b/docs/src/downloads.md index 4da69a6777..d95531c824 100644 --- a/docs/src/downloads.md +++ b/docs/src/downloads.md @@ -48,7 +48,7 @@ download = await download_info.value # Wait for the download process to complete print(await download.path()) # Save downloaded file somewhere -download.save_as("/path/to/save/download/at.txt") +await download.save_as("/path/to/save/download/at.txt") ``` ```python sync