From 9b3459edf77be5eeca78b54cc98fb719d1c524db Mon Sep 17 00:00:00 2001 From: Addison Alvey-Blanco Date: Mon, 7 Aug 2023 09:11:10 -0500 Subject: [PATCH] Minor change --- meshmode/discretization/poly_element.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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):