Skip to content

Commit 90e2185

Browse files
committed
Update guidata.dataset.io to guidata.io imports
1 parent 03c8f38 commit 90e2185

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cdl/core/gui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
import abc
2323

24-
from guidata.dataset.io import BaseIOHandler
24+
from guidata.io import BaseIOHandler
2525

2626

2727
class ObjItf(abc.ABC):

cdl/core/gui/macroeditor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import sys
1717
import time
1818

19-
from guidata.dataset.io import BaseIOHandler
19+
from guidata.io import BaseIOHandler
2020
from guidata.widgets.codeeditor import CodeEditor
2121
from guidata.widgets.console.shell import PythonShellWidget
2222
from qtpy import QtCore as QC

cdl/core/io/native.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
from __future__ import annotations
1313

14-
from guidata.dataset.io import HDF5Reader, HDF5Writer
14+
from guidata.io import HDF5Reader, HDF5Writer
1515

1616
from cdl import __version__
1717

cdl/core/model/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import guidata.dataset as gds
2222
import numpy as np
2323
from guidata.dataset import update_dataset
24-
from guidata.dataset.io import JSONHandler, JSONReader, JSONWriter
24+
from guidata.io import JSONHandler, JSONReader, JSONWriter
2525
from plotpy.builder import make
2626
from plotpy.io import load_items, save_items
2727
from plotpy.items import AnnotatedPoint, AnnotatedShape, LabelItem

cdl/core/remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
import guidata.dataset as gds
3131
import numpy as np
32-
from guidata.dataset.io import JSONReader, JSONWriter
32+
from guidata.io import JSONReader, JSONWriter
3333
from qtpy import QtCore as QC
3434

3535
from cdl import __version__

0 commit comments

Comments
 (0)