Skip to content

Commit 13765d5

Browse files
committed
Fix imports
1 parent 056ee61 commit 13765d5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

stage2.1_traited_script/image_folder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
)
1313

1414
# Local imports
15-
from pycasa.model.image_file import ImageFile, SUPPORTED_FORMATS
15+
from traited_face_detect import ImageFile, SUPPORTED_FORMATS
1616

1717
FILENAME_COL = "filename"
1818
NUM_FACE_COL = "Num. faces"

stage3.1_first_views/image_folder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
)
1313

1414
# Local imports
15-
from pycasa.model.image_file import ImageFile, SUPPORTED_FORMATS
15+
from traited_face_detect import ImageFile, SUPPORTED_FORMATS
1616

1717
FILENAME_COL = "filename"
1818
NUM_FACE_COL = "Num. faces"

stage3.1_first_views/image_folder_view.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from traitsui.ui_editors.data_frame_editor import DataFrameEditor
66

77
# Local imports
8-
from pycasa.model.image_folder import FILENAME_COL, ImageFolder, NUM_FACE_COL
8+
from image_folder import FILENAME_COL, ImageFolder, NUM_FACE_COL
99

1010

1111
DISPLAYED_COLUMNS = [FILENAME_COL, NUM_FACE_COL] + [

0 commit comments

Comments
 (0)