Skip to content

Commit bcaff4e

Browse files
Update devito/finite_differences/derivative.py
Co-authored-by: Ed Caunt <[email protected]>
1 parent 3cec5b2 commit bcaff4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devito/finite_differences/derivative.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ def _eval_at(self, func):
491491
x0 = func.indices_ref.getters
492492
psubs = {}
493493
nx0 = x0.copy()
494-
for d, _ in x0.items():
494+
for d in x0:
495495
if d in self.dims:
496496
# d is a valid Derivative dimension
497497
continue

0 commit comments

Comments
 (0)