例如
class abcd(base_class):
def test1(self,list_of_ids):
###some other statements
return list_of_ids
这是基类..我无法编辑。所以需要继承类,需要list(set(list_of_ids))
在test1()中加一行。我怎样才能做到这一点?
例如
class abcd(base_class):
def test1(self,list_of_ids):
###some other statements
return list_of_ids
这是基类..我无法编辑。所以需要继承类,需要list(set(list_of_ids))
在test1()中加一行。我怎样才能做到这一点?