diff -r 55d132525155 -r 642e31cb55f0 hgext/infinitepush/store.py --- a/hgext/infinitepush/store.py Mon Feb 21 13:03:43 2022 -0700 +++ b/hgext/infinitepush/store.py Mon Feb 21 13:08:28 2022 -0700 @@ -25,7 +25,7 @@ pass -class abstractbundlestore(object): # pytype: disable=ignored-metaclass +class abstractbundlestore: # pytype: disable=ignored-metaclass """Defines the interface for bundle stores. A bundle store is an entity that stores raw bundle data. It is a simple @@ -56,7 +56,7 @@ """ -class filebundlestore(object): +class filebundlestore: """bundle store in filesystem meant for storing bundles somewhere on disk and on network filesystems