add winery backend
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
Filter activity
Build is green
Patch application report for D6006 (id=21687)
Rebasing onto 37dcacf1...
Current branch diff-target is up to date.
Changes applied before test
commit 4cade7b99245f0493fc237536d638f09a88368c5 Author: Loïc Dachary <loic@dachary.org> Date: Mon Jul 19 12:21:19 2021 +0200 add winery backend Summary: Related to: #3432 Reviewers: #reviewers
See https://jenkins.softwareheritage.org/job/DOBJS/job/tests-on-diff/25/ for more details.
- swh/objstorage/backends/winery/__init__.py 0 → 100644
1 # Copyright (C) 2021 The Software Heritage developers 2 # See the AUTHORS file at the top-level directory of this distribution 3 # License: GNU General Public License version 3, or any later version 4 # See top-level LICENSE file for more information 5 6 import abc 7 8 from swh.objstorage.exc import Error, ObjNotFoundError 9 from swh.objstorage.objstorage import ObjStorage, compute_hash 10 11 12 class WineryObjStorageDriver(object): 13 pass ! In !124 (closed), @vlorentz wrote: why
*args, **kwargs
on all methods?Because it's copy/pasted from the abstract methods in objstorage.py
Please register or sign in to reply