Skip to content

Commit

Permalink
#3200 add if statement to handle tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
brosaplanella committed Aug 7, 2023
1 parent 9f6c239 commit b287302
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pybamm/solvers/processed_variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,9 @@ def _process_spatial_variable_names(self, spatial_variable):
# Extract names
raw_names = []
for var in spatial_variable:
# Ignore tabs in domain names
if var == "tabs":
continue
if isinstance(var, str):
raw_names.append(var)
else:
Expand Down

0 comments on commit b287302

Please sign in to comment.