Skip to content

Commit c832f92

Browse files
committed
Fix type annotation error
1 parent 2418103 commit c832f92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/astro_image_display_api/dummy_viewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ImageViewer:
3333
autocut_options: tuple = ("minmax", "zscale", "asinh", "percentile", "histogram")
3434
_cursor: str = ImageViewerInterface.ALLOWED_CURSOR_LOCATIONS[0]
3535
marker: Any = "marker"
36-
_cuts: str | tuple[float] = (0, 1)
36+
_cuts: str | tuple[float, float] = (0, 1)
3737
_stretch: str = "linear"
3838
# viewer: Any
3939

0 commit comments

Comments
 (0)