Skip to content

Commit

Permalink
refactor(gui): variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
nritsche committed Jul 17, 2020
1 parent c842391 commit 9bd6472
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bondia/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def update_days(day_selector, event):
components.append((f"toggle_{p.id}", self._toggle_plot[p.id]))
components.append((f"plot_{p.id}", p.panel_row))

for l, c in components:
template.add_panel(l, c)
for name, c in components:
template.add_panel(name, c)
return template

def render(self):
Expand Down

0 comments on commit 9bd6472

Please sign in to comment.