diff --git a/meta.json b/meta.json index fa3823b..05b14db 100644 --- a/meta.json +++ b/meta.json @@ -1,12 +1,12 @@ { - "module_id": "viam:python-appimage-example", + "module_id": "seanorg:python-appimage-example", "visibility": "public", "url": "https://github.com/viamrobotics/python-appimage-module", "description": "Example of deploying a Python module with AppImageBuilder.", "models": [ { "api": "rdk:component:camera", - "model": "viam:camera:python-appimage-example" + "model": "seanorg:camera:python-appimage-example" } ], "entrypoint": "run.sh" diff --git a/src/module.py b/src/module.py index 84b0ed2..0e08b55 100644 --- a/src/module.py +++ b/src/module.py @@ -30,7 +30,7 @@ class MyModule(Camera, Reconfigurable): # use a better name than this """The distortion parameters of the camera""" - MODEL: ClassVar[Model] = Model(ModelFamily("viam", "camera"), "python-appimage-example") # make sure this matches the model in meta.json + MODEL: ClassVar[Model] = Model(ModelFamily("seanorg", "camera"), "python-appimage-example") # make sure this matches the model in meta.json # create any class parameters here, 'some_pin' is used as an example (change/add as needed) some_pin: int