mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-25 20:47:39 +02:00
rename "types" to "common" to avoid name conflict
types is already a standard python package
This commit is contained in:
parent
51a9b0e316
commit
547e6c93b6
5 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ from pprint import pprint
|
|||
|
||||
from . import stats
|
||||
from meshroom import processGraph as pg
|
||||
from meshroom.types import BaseObject, Model, Slot, Signal, Property
|
||||
from meshroom.common import BaseObject, Model, Slot, Signal, Property
|
||||
|
||||
# Replace default encoder to support Enums
|
||||
DefaultJSONEncoder = json.JSONEncoder # store the original one
|
||||
|
|
|
@ -2,8 +2,8 @@ import pytest
|
|||
|
||||
from PySide2.QtCore import QObject, Property
|
||||
|
||||
from meshroom.types.core import CoreModel
|
||||
from meshroom.types.qt import QObjectListModel, QTypedObjectListModel
|
||||
from meshroom.common.core import CoreModel
|
||||
from meshroom.common.qt import QObjectListModel, QTypedObjectListModel
|
||||
|
||||
|
||||
class DummyNode(QObject):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue