def __init__(self): super().__init__() self.inner_dir = "imgs" self.match_cond = comparison(os.path.isdir)
def __init__(self): super().__init__() self.suffix = "jpg" self.match_cond = comparison(str.endswith, self.suffix)
def __init__(self): super().__init__() self.inner_dir = "original_recipes_info" self.suffix = "json" self.match_cond = comparison(str.endswith, self.suffix)