def __call__(self, j, x=None):
"""Evaluates the related task for the provided index.
Args:
x: Task index.
j: JSON data the task has to be
applied on.
Returns:
Returns a tuple of:
0: len of the job list
1: list of the execution status for
the tasks
Raises:
JSONPatchException:
"""
if type(x) is NoneType:
return self.apply(j)
if self.patch[x](j):
return 1,[]
return 1,[0]
评论列表
文章目录