Open
Description
We need to find a better way to use pyros_setup.
Currently the user is supposed to do :
try:
import something
except ImportError:
import pyros_setup
pyros_setup.configurable_import().configure().activate()
import something
The main drawback with this is that if an import trigger an error, which is not related with setting up ROS, it will be hidden by a further error, potentially related with pyros_setup...