Skip to content

Commit cb00860

Browse files
committed
Reorder have_results import in __all__ to maintain consistency
1 parent b227459 commit cb00860

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

datalab/adapters_metadata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"ResultData",
2525
"TableAdapter",
2626
"create_resultdata_dict",
27-
"have_results",
2827
"have_geometry_results",
28+
"have_results",
2929
"resultadapter_to_html",
3030
"show_resultdata",
3131
]

datalab/adapters_plotpy/base.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,17 @@
1212
import json
1313
from typing import TYPE_CHECKING
1414

15-
import guidata.dataset as gds
1615
from guidata.io import JSONReader, JSONWriter
1716
from plotpy.io import load_items, save_items
1817
from plotpy.items import (
1918
AbstractLabelItem,
20-
AnnotatedPoint,
2119
AnnotatedSegment,
2220
AnnotatedShape,
2321
)
2422

25-
from datalab.config import Conf
26-
2723
if TYPE_CHECKING:
2824
from plotpy.items import AbstractShape
29-
from plotpy.styles import AnnotationParam, ShapeParam
25+
from plotpy.styles import AnnotationParam
3026

3127

3228
def config_annotated_shape(

0 commit comments

Comments
 (0)