From 1e3b151618db0ae810c21d818672cc3ae6ea5f02 Mon Sep 17 00:00:00 2001 From: Alexandru Fikl Date: Sat, 12 Oct 2019 14:39:57 -0500 Subject: [PATCH] port away from deprecated method --- pytential/symbolic/primitives.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pytential/symbolic/primitives.py b/pytential/symbolic/primitives.py index 1f4fd485..ea59b676 100644 --- a/pytential/symbolic/primitives.py +++ b/pytential/symbolic/primitives.py @@ -434,9 +434,9 @@ def array_to_tuple(ary): class Expression(ExpressionBase): - def stringifier(self): + def make_stringifier(self, originating_stringifier=None): from pytential.symbolic.mappers import StringifyMapper - return StringifyMapper + return StringifyMapper() def make_sym_mv(name, num_components): -- GitLab