Skip to content

Commit 2418103

Browse files
committed
Add imports to __init__
1 parent ef02904 commit 2418103

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
# SPDX-FileCopyrightText: 2025-present Matt Craig <[email protected]>
22
#
33
# SPDX-License-Identifier: MIT
4+
5+
from .interface_definition import * # noqa: F403
6+
from .widget_api_test import * # noqa: F403

src/astro_image_display_api/interface_definition.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020

2121
__all__ = [
2222
'ImageViewerInterface',
23-
'ALLOWED_CURSOR_LOCATIONS',
24-
'RESERVED_MARKER_SET_NAMES',
25-
'DEFAULT_MARKER_NAME',
26-
'DEFAULT_INTERACTIVE_MARKER_NAME'
2723
]
2824

2925

tests/test_astro_image_display_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from astropy.utils.data import get_pkg_data_contents
22

3-
from astro_image_display_api.interface_definition import ImageViewerInterface
3+
from astro_image_display_api import ImageViewerInterface
44

55
def test_api_test_class_completeness():
66
"""

tests/test_dummy_viewer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from astro_image_display_api.dummy_viewer import ImageViewer
2-
from astro_image_display_api.interface_definition import ImageViewerInterface
3-
from astro_image_display_api.widget_api_test import ImageWidgetAPITest
2+
from astro_image_display_api import ImageViewerInterface
3+
from astro_image_display_api import ImageWidgetAPITest
44

55

66
def test_instance():

0 commit comments

Comments
 (0)