From 377d53b6769ac73bbcd38a32c995ac5f77d9ed9f Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Mon, 27 Jul 2020 14:35:08 -0500 Subject: [PATCH] Fix Slice fields --- pytato/array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytato/array.py b/pytato/array.py index 755a9e3..4382ad7 100644 --- a/pytato/array.py +++ b/pytato/array.py @@ -1128,7 +1128,7 @@ class Slice(IndexRemappingBase): .. attribute:: begin .. attribute:: size """ - fields = Array.fields + ("begin", "size") + fields = IndexRemappingBase.fields + ("begin", "size") mapper_method = "map_slice" def __init__(self, -- GitLab