mirror of
https://github.com/deepmodeling/Uni-Lab-OS
synced 2026-03-27 08:45:31 +00:00
Added PRCXI9300ModuleSite and PRCXI9300FunctionalModule to the PLR class registration in plr_additional_res_reg.py so find_subclass can locate them during deserialization of cached cloud data. Also added "module" and "carrier" to replace_plr_type and TYPE_MAP in resource_tracker.py to suppress unknown type warnings. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
1.2 KiB
Python
24 lines
1.2 KiB
Python
|
|
|
|
def register():
|
|
# noinspection PyUnresolvedReferences
|
|
from unilabos.devices.liquid_handling.prcxi.prcxi import PRCXI9300Deck
|
|
# noinspection PyUnresolvedReferences
|
|
from unilabos.devices.liquid_handling.prcxi.prcxi import PRCXI9300Plate
|
|
from unilabos.devices.liquid_handling.prcxi.prcxi import PRCXI9300PlateAdapter
|
|
from unilabos.devices.liquid_handling.prcxi.prcxi import PRCXI9300TipRack
|
|
from unilabos.devices.liquid_handling.prcxi.prcxi import PRCXI9300Trash
|
|
from unilabos.devices.liquid_handling.prcxi.prcxi import PRCXI9300TubeRack
|
|
from unilabos.devices.liquid_handling.prcxi.prcxi import PRCXI9300ModuleSite
|
|
# noinspection PyUnresolvedReferences
|
|
from unilabos.devices.liquid_handling.prcxi.prcxi_modules import PRCXI9300FunctionalModule
|
|
# noinspection PyUnresolvedReferences
|
|
from unilabos.devices.workstation.workstation_base import WorkStationContainer
|
|
|
|
from unilabos.devices.liquid_handling.laiyu.laiyu import TransformXYZDeck
|
|
from unilabos.devices.liquid_handling.laiyu.laiyu import TransformXYZContainer
|
|
|
|
from unilabos.devices.liquid_handling.rviz_backend import UniLiquidHandlerRvizBackend
|
|
from unilabos.devices.liquid_handling.laiyu.backend.laiyu_v_backend import UniLiquidHandlerLaiyuBackend
|
|
|