Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
a-alveyblanc committed Aug 7, 2023
1 parent 8f67c87 commit 9b3459e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meshmode/discretization/poly_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 9b3459e

Please sign in to comment.