Skip to content

Commit

Permalink
Merge pull request #2520 from iisakkirotko/feat-close-method
Browse files Browse the repository at this point in the history
add placeholder close method to BaseViewer
  • Loading branch information
astrofrog authored Jan 6, 2025
2 parents 0c8f5e8 + ec7efe6 commit c1a238b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions glue/viewers/common/viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ def add_data(self, data):
def add_subset(self, subset):
raise NotImplementedError()

def close(self):
raise NotImplementedError()

def __str__(self):
return self.LABEL

Expand Down

0 comments on commit c1a238b

Please sign in to comment.