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
syslog-to-csv/bundlefun/__main__.py
Lines 1 to 10 in a0556c3
You are missing an import to make this go:
from importlib.metadata import distribution if __name__ == "__main__": success = True dist = distribution("bundlefun") path = dist.locate_file(...) ... return 0 if success else 1
The final line in your code exit(main()) is going to fail since you haven't written a main function to be called.
exit(main())
main
The text was updated successfully, but these errors were encountered:
No branches or pull requests
syslog-to-csv/bundlefun/__main__.py
Lines 1 to 10 in a0556c3
You are missing an import to make this go:
The final line in your code
exit(main())
is going to fail since you haven't written amain
function to be called.The text was updated successfully, but these errors were encountered: