-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
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
fix: import error #567
fix: import error #567
Conversation
❌ 5 Tests Failed:
View the top 3 failed tests by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
✅ All tests successful. No failed tests were found. 📣 Thoughts on this report? Let Codecov know! | Powered by Codecov |
this uses ruff for linting, it adds a configuration for ignoring certain rules (F401: unused import) and excluding certain directories (default + languages/ + samples/)
@@ -141,7 +141,7 @@ def _get_file_fixes( | |||
reason=err.reason, | |||
), | |||
) | |||
except IsADirectoryError as err: | |||
except IsADirectoryError as _: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nit] in a previous instance the as _
was completely removed
this PR fixes an import error in
get_report_results.py
and also fixes a bunch of linting errors ruff brings up