From e1d5fda5d449629d1a6bbd6145bf3cca648ea273 Mon Sep 17 00:00:00 2001 From: Robert Date: Mon, 23 Jul 2018 16:29:45 -0700 Subject: [PATCH] python: do not clobber minalign when we create objects (#4833) --- python/flatbuffers/builder.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/flatbuffers/builder.py b/python/flatbuffers/builder.py index dea77ebfc..09044575a 100644 --- a/python/flatbuffers/builder.py +++ b/python/flatbuffers/builder.py @@ -160,7 +160,6 @@ class Builder(object): # use 32-bit offsets so that arithmetic doesn't overflow. self.current_vtable = [0 for _ in range_func(numfields)] self.objectEnd = self.Offset() - self.minalign = 1 self.nested = True def WriteVtable(self):