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
Trying to import mavtestgen crashes with an ImportError because of a bad relative import.
mavtestgen
ImportError
Further it has no test coverage and has seemingly been broken since at least as far back as a3c2bdb
The text was updated successfully, but these errors were encountered:
I think the import can be fixed by changing from . import mavparse to from .generator import mavparse.
from . import mavparse
from .generator import mavparse
But then it shows up another error...
$ python -m pymavlink.mavtestgen something.xml AttributeError: module 'pymavlink.generator.mavparse' has no attribute 'parse_mavlink_xml'
Sorry, something went wrong.
No branches or pull requests
Trying to import
mavtestgen
crashes with anImportError
because of a bad relative import.Further it has no test coverage and has seemingly been broken since at least as far back as a3c2bdb
The text was updated successfully, but these errors were encountered: