From 005f3cc635cce48038b95e9ca1ab417ef92b881a Mon Sep 17 00:00:00 2001 From: Nikolay Ulmasov Date: Sun, 26 Nov 2023 12:18:34 +0000 Subject: [PATCH] fix the issue with a constructor parameter Signed-off-by: Nikolay Ulmasov --- python/src/filesystem.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/filesystem.rs b/python/src/filesystem.rs index 81aa87587f..b50f738bec 100644 --- a/python/src/filesystem.rs +++ b/python/src/filesystem.rs @@ -523,7 +523,7 @@ impl ObjectOutputStream { pos: 0, closed: false, mode: "wb".into(), - max_buffer_size: max_buffer_size, + max_buffer_size, buffer_size: 0, }) }