浏览代码

repository: remove __len__ and __contains__

Thomas Waldmann 9 月之前
父节点
当前提交
a15cd1e493
共有 1 个文件被更改,包括 0 次插入6 次删除
  1. 0 6
      src/borg/repository.py

+ 0 - 6
src/borg/repository.py

@@ -286,12 +286,6 @@ class Repository:
                 logger.error(f"Finished {mode} repository check, errors found.")
         return objs_errors == 0 or repair
 
-    def __len__(self):
-        raise NotImplementedError
-
-    def __contains__(self, id):
-        raise NotImplementedError
-
     def list(self, limit=None, marker=None):
         """
         list <limit> IDs starting from after id <marker>.