Skip to content

Commit

Permalink
Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
rosteen committed Dec 23, 2024
1 parent a62abe6 commit 58eaf12
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions jdaviz/core/template_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -1722,11 +1722,9 @@ def _on_subset_created(self, msg=None):
self._update_items({'source': 'subset_added'})

def _on_subset_renamed(self, msg):
print("Calling on_subset_renamed")
# Find the subset in self.items and update the label
for item in self.items:
if item['label'] == msg.old_label:
print(f"Updating {item}")
item['label'] = msg.new_label
break
self.send_state("items")
Expand Down

0 comments on commit 58eaf12

Please sign in to comment.