Skip to content

Commit

Permalink
Update _container.py
Browse files Browse the repository at this point in the history
  • Loading branch information
adtzlr committed Sep 23, 2024
1 parent 2fc49e2 commit 78dee44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/felupe/field/_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def extract(
out = [None] * len(self.fields)

grads = np.pad(grad, (0, len(self.fields) - 1))
orders = np.pad(order, (0, len(self.fields) - 1))
orders = order * len(self.fields)

return tuple(
f.extract(g, sym, add_identity=add_identity, dtype=dtype, out=res, order=od)
Expand Down

0 comments on commit 78dee44

Please sign in to comment.