yapf format
This commit is contained in:
parent
76c9339453
commit
138881dab8
4 changed files with 9 additions and 2 deletions
|
@ -2,11 +2,13 @@ from abc import ABCMeta, abstractmethod
|
|||
|
||||
from six import add_metaclass
|
||||
|
||||
|
||||
@add_metaclass(ABCMeta)
|
||||
class GCWorkerDataInterface(object):
|
||||
"""
|
||||
Interface that represents all data store interactions required by the GC worker.
|
||||
"""
|
||||
|
||||
@abstractmethod
|
||||
def perform_garbage_collection(self):
|
||||
""" Performs garbage collection on a single repository, if any can be found with garbage. """
|
||||
|
|
Reference in a new issue