Improve consistency of ndarray members

This commit is contained in:
Jan Petykiewicz 2020-05-11 18:49:30 -07:00
commit fa8fc52dd6
6 changed files with 9 additions and 9 deletions

View file

@ -64,7 +64,7 @@ class Text(Shape):
def mirrored(self, val: List[bool]):
if is_scalar(val):
raise PatternError('Mirrored must be a 2-element list of booleans')
self._mirrored = list(val)
self._mirrored = numpy.ndarray(val, dtype=bool, copy=True)
def __init__(self,
string: str,