Skip to content

Commit

Permalink
Remove double list copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Terje Skjaeveland committed Jul 7, 2017
1 parent ae8f3a2 commit e67cd72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kivy/animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def _update(self, dt):
widgets = self._widgets
transition = self._transition
calculate = self._calculate
for uid in list(widgets.keys())[:]:
for uid in list(widgets.keys()):
anim = widgets[uid]
widget = anim['widget']

Expand Down

0 comments on commit e67cd72

Please sign in to comment.