From 32f9dfbdc0776a1b5f57db279eb617848cdcc499 Mon Sep 17 00:00:00 2001 From: Henning Merklinger Date: Fri, 20 Sep 2024 12:27:32 +0200 Subject: [PATCH] fix formatting --- tableauserverclient/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tableauserverclient/config.py b/tableauserverclient/config.py index 0a7c19e2..a7511275 100644 --- a/tableauserverclient/config.py +++ b/tableauserverclient/config.py @@ -12,7 +12,7 @@ class Config: @property def FILESIZE_LIMIT_MB(self): return min(int(os.getenv("TSC_FILESIZE_LIMIT_MB", 64)), 64) - + # For when a datasource is over 64MB, break it into 5MB(standard chunk size) chunks @property def CHUNK_SIZE_MB(self):