*: Remove explicit object inheritance
Bug: b/240137096
Change-Id: I5dbcd265aae976641570df39300d5efdacaeb864
Reviewed-on: https://pigweed-review.googlesource.com/c/infra/recipes/+/103614
Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com>
Pigweed-Auto-Submit: Rob Mohr <mohrr@google.com>
Reviewed-by: Oliver Newman <olivernewman@google.com>
diff --git a/recipe_modules/roll_util/api.py b/recipe_modules/roll_util/api.py
index 2bcb419..774eed4 100644
--- a/recipe_modules/roll_util/api.py
+++ b/recipe_modules/roll_util/api.py
@@ -97,7 +97,7 @@
@attr.s
-class Commit(object):
+class Commit:
hash = attr.ib(type=str)
message = attr.ib(type=str)
author = attr.ib(type=str)
@@ -106,7 +106,7 @@
@attr.s
-class Roll(object):
+class Roll:
_api = attr.ib()
project_name = attr.ib(type=str)
old_revision = attr.ib(type=str)
@@ -270,7 +270,7 @@
@attr.s
-class Message(object):
+class Message:
name = attr.ib(type=str)
template = attr.ib(type=str)
kwargs = attr.ib(type=dict)