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
Hello,
In the get_metadata function, the dvl_metadata_capture cannot be resolved.
get_metadata
dvl_metadata_capture
GenoFLU/bin/genoflu.py
Lines 168 to 170 in 962c834
As such, the get_metadata function will always raise an exception.
Lines 374 to 377 in 962c834
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
There's no error since exception handling is suppressed with try: <code>; except: pass in the block of code after if __name__ == "__main__":.
try: <code>; except: pass
if __name__ == "__main__":
PyCharm shows that there is no module named dvl_metadata_capture
genoflu.py script would be called directly.
genoflu.py
After modifying the script to log the exception, it outputs No module named 'dvl_metadata_capture'
No module named 'dvl_metadata_capture'
No branches or pull requests
Hello,
In the
get_metadata
function, thedvl_metadata_capture
cannot be resolved.GenoFLU/bin/genoflu.py
Lines 168 to 170 in 962c834
As such, the
get_metadata
function will always raise an exception.GenoFLU/bin/genoflu.py
Lines 374 to 377 in 962c834
The text was updated successfully, but these errors were encountered: