-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
removed explicit object inheritance #6686
removed explicit object inheritance #6686
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #6686 +/- ##
=======================================
Coverage 63.28% 63.28%
=======================================
Files 162 162
Lines 13313 13313
Branches 1817 1817
=======================================
Hits 8425 8425
Misses 4599 4599
Partials 289 289
|
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.
I'm fine with this change. We would also want to add this check to ruff
+++ b/pyproject.toml
@@ -169,7 +169,7 @@ build-backend = "poetry.core.masonry.api"
[tool.ruff]
exclude = [".git", "viz-lib", "node_modules", "migrations"]
ignore = ["E501"]
-select = ["C9", "E", "F", "W", "I001"]
+select = ["C9", "E", "F", "W", "I001", "UP004"]
@eradman done |
@AndrewChubatiuk Thanks for separating the PR. |
@eradman Thanks for your review. I didn't find that we should update |
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.
I confirmed this updates all classes to be fixed. I will merge this.
* removed explicit object inheritance * minor fix * pr comments --------- Co-authored-by: Andrew Chubatiuk <andrew.chubatiuk@motional.com>
What type of PR is this?
Removed unneeded explicit inheritance from object