From f155129f7cb71259150cc2d6a0bfc0be6d47ce54 Mon Sep 17 00:00:00 2001 From: izzy lyseggen Date: Tue, 19 Jan 2021 09:26:42 +0000 Subject: [PATCH] feat(base): dynamic chunk default (1000) --- speckle/objects/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/speckle/objects/base.py b/speckle/objects/base.py index c9cadf5..94d0768 100644 --- a/speckle/objects/base.py +++ b/speckle/objects/base.py @@ -16,6 +16,7 @@ class Base(BaseModel): applicationId: Optional[str] = None speckle_type: Optional[str] = "Base" _chunkable: Dict[str, int] = {} # dict of chunkable props and their max chunk size + _chunk_size_default: int = 1000 def __init__(self, **kwargs) -> None: super().__init__()