You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the feature you'd like
Easier importing of airo-mono functions/classes. Currently to import airo-mono functions etc. you generally have to fully specify the import paths, e.g:
Specifying this can be a bit tedious and requires users to be aware of the entire structure of our Python packages.
Editor import suggestion tools can help with this, but currently this doesn't seem to work well for me in VSCode with Pylance and non-editable pip installed airo-mono, e.g:
transform_points() # here I get the suggestion Add "from airo_spatial_algebra import transform_points"project_points_to_image_plane() # here I don't get import suggestions
Possible implementation
Move imports higher e.g. from airo_camera_toolkit import Zed2i, project_point_to_image_plane
Improve integration with import-suggestion tools
The text was updated successfully, but these errors were encountered:
Describe the feature you'd like
Easier importing of airo-mono functions/classes. Currently to import airo-mono functions etc. you generally have to fully specify the import paths, e.g:
Specifying this can be a bit tedious and requires users to be aware of the entire structure of our Python packages.
Editor import suggestion tools can help with this, but currently this doesn't seem to work well for me in VSCode with Pylance and non-editable pip installed airo-mono, e.g:
Possible implementation
from airo_camera_toolkit import Zed2i, project_point_to_image_plane
The text was updated successfully, but these errors were encountered: