In Python,
class Example:
@classmethod
def build_class_instance(cls, fixed_inputs:List[str],unchanged_args):List[str]:
new_vars = f(fixed_inputs)
return Example(new_vars,unchanged_args)
The problem now seems that for the output, if I write -> Example, my IDE complains about it...
What should I write?