diff options
| author | Josh Ferrell <josh@vector35.com> | 2025-08-27 21:02:59 -0400 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2025-11-04 22:09:16 -0500 |
| commit | 5ab92a703fe01634e086cbf278dc8ca36c438a54 (patch) | |
| tree | 8d3e7341ffa1e896cb51afe075ba32ea0d330ec8 /python/collaboration/examples/multitool.py | |
| parent | ae1dbe7e69e3a1d5cc69fa5362fba1b85ba5b6b8 (diff) | |
Add auto downloading of project file dependencies, clean up download APIs
Diffstat (limited to 'python/collaboration/examples/multitool.py')
| -rw-r--r-- | python/collaboration/examples/multitool.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
