We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Even if the uavcan namespace is available, you may get this error which is incorrect and badly misleading:
uavcan
$ y sub 24:uavcan.nonexistent.nested NotFoundError: Run `yakut compile <path>/uavcan` to compile DSDL namespace 'uavcan'
The problem is not that uavcan is not available (it is!) but rather that it doesn't contain uavcan.nonexistent.
uavcan.nonexistent
If the last part .nested is removed, we get the correct error message:
.nested
NotFoundError: Could not locate nonexistent.*.* in module 'uavcan'
The text was updated successfully, but these errors were encountered:
The culprit is here:
yakut/yakut/dtype_loader.py
Line 68 in 996e646
The error message generated by make_usage_suggestion() is misleading and should be improved as follows:
make_usage_suggestion()
Sorry, something went wrong.
No branches or pull requests
Even if the
uavcan
namespace is available, you may get this error which is incorrect and badly misleading:The problem is not that
uavcan
is not available (it is!) but rather that it doesn't containuavcan.nonexistent
.If the last part
.nested
is removed, we get the correct error message:The text was updated successfully, but these errors were encountered: