Skip to content

Commit 5e73df7

Browse files
committed
Use constants from interface definition
1 parent 04a961a commit 5e73df7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

astrowidgets/interface_definition.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ class ImageViewerInterface(Protocol):
3131
# viewer: Any
3232

3333
# Allowed locations for cursor display
34-
ALLOWED_CURSOR_LOCATIONS = ('top', 'bottom', None)
34+
ALLOWED_CURSOR_LOCATIONS : tuple = ALLOWED_CURSOR_LOCATIONS
3535

3636
# List of marker names that are for internal use only
37-
RESERVED_MARKER_SET_NAMES = ('all', )
37+
RESERVED_MARKER_SET_NAMES : tuple = RESERVED_MARKER_SET_NAMES
3838

3939
# The methods, grouped loosely by purpose
4040

0 commit comments

Comments
 (0)