summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--polymatrix/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/polymatrix/__init__.py b/polymatrix/__init__.py
index dff503b..ad11c70 100644
--- a/polymatrix/__init__.py
+++ b/polymatrix/__init__.py
@@ -612,7 +612,7 @@ def to_sympy_repr(
def func(state: ExpressionState):
state, underlying = expr.apply(state)
- A = np.zeros(underlying.shape, dtype=np.object)
+ A = np.zeros(underlying.shape, dtype=object)
for (row, col), polynomial in underlying.gen_terms():