summaryrefslogtreecommitdiff
path: root/gitdb/db/mem.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitdb/db/mem.py')
-rw-r--r--gitdb/db/mem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitdb/db/mem.py b/gitdb/db/mem.py
index b2542ff..1b954cb 100644
--- a/gitdb/db/mem.py
+++ b/gitdb/db/mem.py
@@ -37,7 +37,7 @@ class MemoryDB(ObjectDBR, ObjectDBW):
exists in the target storage before introducing actual IO"""
def __init__(self):
- super(MemoryDB, self).__init__()
+ super().__init__()
self._db = LooseObjectDB("path/doesnt/matter")
# maps 20 byte shas to their OStream objects