diff --git a/meshmode/discretization/poly_element.py b/meshmode/discretization/poly_element.py index 322b24080..8c7065217 100644 --- a/meshmode/discretization/poly_element.py +++ b/meshmode/discretization/poly_element.py @@ -608,10 +608,10 @@ def __init__(self, mesh_el_group, order, index=None): self._quadrature_rule = mp.LegendreGaussTensorProductQuadrature( order, mesh_el_group.dim) _unit_nodes_1d = mp.LegendreGaussTensorProductQuadrature( - order, 1) + order, 1).nodes super().__init__(mesh_el_group, order, index=index, - unit_nodes_1d=_unit_nodes_1d.nodes) + unit_nodes_1d=_unit_nodes_1d) @memoize_method def quadrature_rule(self):