summaryrefslogtreecommitdiff
path: root/sphinx/util/inventory.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/util/inventory.py')
-rw-r--r--sphinx/util/inventory.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/util/inventory.py b/sphinx/util/inventory.py
index ed4e55bc2..29bd872a7 100644
--- a/sphinx/util/inventory.py
+++ b/sphinx/util/inventory.py
@@ -32,7 +32,7 @@ BUFSIZE = 16 * 1024
logger = logging.getLogger(__name__)
-class InventoryFileReader(object):
+class InventoryFileReader:
"""A file reader for inventory file.
This reader supports mixture of texts and compressed texts.
@@ -94,7 +94,7 @@ class InventoryFileReader(object):
pos = buf.find(b'\n')
-class InventoryFile(object):
+class InventoryFile:
@classmethod
def load(cls, stream, uri, joinfunc):
# type: (IO, unicode, Callable) -> Inventory