From 5ab92a703fe01634e086cbf278dc8ca36c438a54 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Wed, 27 Aug 2025 21:02:59 -0400 Subject: Add auto downloading of project file dependencies, clean up download APIs --- python/collaboration/examples/multitool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/collaboration/examples/multitool.py') diff --git a/python/collaboration/examples/multitool.py b/python/collaboration/examples/multitool.py index 313e537b..6195fe32 100644 --- a/python/collaboration/examples/multitool.py +++ b/python/collaboration/examples/multitool.py @@ -237,7 +237,7 @@ def main(): print(f"Unknown File: {args.name}") sys.exit(1) with TqdmProgress(desc="", leave=False) as t: - file.download(lambda cur, max: t.progress(cur, max)) + file.download_contents(lambda cur, max: t.progress(cur, max)) print_file_info(file) elif args.file_command == "delete": file = project.get_file_by_name(args.name) -- cgit v1.3.1