Skip to content

Commit

Permalink
Fixed an issue with unhashable Bunch in ipywidgets back end
Browse files Browse the repository at this point in the history
  • Loading branch information
ejeschke committed Dec 16, 2023
1 parent c1c6a26 commit 5a6945d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ginga/web/jupyterw/JpHelp.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def remove_timer(self, timer):

def reset_timer(self, timer, time_sec):
with self.timer_lock:
if timer not in self.timer:
if timer.name not in self.timer:
self.timer[timer.name] = timer
self.logger.debug("setting timer...")
timer.deadline = time.time() + time_sec
Expand Down

0 comments on commit 5a6945d

Please sign in to comment.