From 006387bf6a7ce182c325859c3eea3054b2a9cc6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Socha?= <31014760+lukaszsocha2@users.noreply.github.com> Date: Fri, 3 Mar 2023 11:44:42 +0100 Subject: [PATCH] Update files.md --- docs/usage/files.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/usage/files.md b/docs/usage/files.md index 923802d6..eab34f1e 100644 --- a/docs/usage/files.md +++ b/docs/usage/files.md @@ -198,10 +198,10 @@ you may want to upload the file in parts. This allows a single part to fail without aborting the entire upload, and failed parts can then be retried. By default, chunked upload will work on 5 threads to improve the download speed. -To change this number you can set `Client.CHUNK_UPLOAD_THREADS` field. +To change this number you can set `API.CHUNK_UPLOAD_THREADS` field. ```python -from boxsdk.config import Client -Client.CHUNK_UPLOAD_THREADS = 10 +from boxsdk.config import API +API.CHUNK_UPLOAD_THREADS = 6 ``` ### Automatic Uploader