removed direct attribute assignments for size and origin

This commit is contained in:
Daniel Otto de Mentock 2021-12-06 15:48:19 +01:00
parent 5558c301fa
commit 1de12bb402
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ class Grid:
""" """
self.material = material self.material = material
self._size = size self.size = size
self._origin = origin self.origin = origin
self.comments = comments self.comments = comments