Skip to content

Commit

Permalink
#1886 fix missing list argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Scottmar93 committed Jan 10, 2022
1 parent 3ff8bd7 commit 6103f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybamm/solvers/processed_variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ def initialise_sensitivity_explicit_forward(self):
start = 0
# Sort the list of input names so that it aligns
# with the sorting applied during solver setup
sorted_input_names = self.all_inputs[0].keys()
sorted_input_names = list(self.all_inputs[0].keys())
sorted_input_names.sort()
for name in sorted_input_names:
inp = self.all_inputs[0][name]
Expand Down

0 comments on commit 6103f2c

Please sign in to comment.