Indicates whether the callable function accepts a path argument.
If True, the function expects two arguments: the string to be processed and the path to that string. If False, the function expects only the string to be processed.
accepts_path: bool = len(inspect.signature(func).parameters) == 2