Skip to content

Commit 7abce74

Browse files
committed
Remove default interactive name
1 parent 64aa05f commit 7abce74

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed

src/astro_image_display_api/dummy_viewer.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,6 @@ class ImageViewer:
4545
# Default marker name for marking via API
4646
DEFAULT_MARKER_NAME: str = ImageViewerInterface.DEFAULT_MARKER_NAME
4747

48-
# Default marker name for interactive marking
49-
DEFAULT_INTERACTIVE_MARKER_NAME: str = ImageViewerInterface.DEFAULT_INTERACTIVE_MARKER_NAME
50-
5148
# some internal variable for keeping track of viewer state
5249
_interactive_marker_name: str = ""
5350
_previous_click_center: bool = False

src/astro_image_display_api/interface_definition.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
ALLOWED_CURSOR_LOCATIONS = ('top', 'bottom', None)
1414

1515
DEFAULT_MARKER_NAME = 'default-marker-name'
16-
DEFAULT_INTERACTIVE_MARKER_NAME = 'interactive-markers'
1716

1817
# List of marker names that are for internal use only
1918
RESERVED_MARKER_SET_NAMES = ('all',)
@@ -51,9 +50,6 @@ class ImageViewerInterface(Protocol):
5150
# Default marker name for marking via API
5251
DEFAULT_MARKER_NAME: str = DEFAULT_MARKER_NAME
5352

54-
# Default marker name for interactive marking
55-
DEFAULT_INTERACTIVE_MARKER_NAME: str = DEFAULT_INTERACTIVE_MARKER_NAME
56-
5753
# The methods, grouped loosely by purpose
5854

5955
# Methods for loading data

src/astro_image_display_api/widget_api_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# TODO: How to enable switching out backend and still run the same tests?
2-
import warnings
32

43
import pytest
54

0 commit comments

Comments
 (0)