Let's say we have a class:
class MyClass():
def __init__(self, a: str, b: str, c: str):
When we want to create an instance of this class:
my_class = MyClass(a="a", b="b", c="c")
Is there any feature/shortcut to autogenerate placeholders for all parameters? For example, generating:
my_class = MyClass(a=???, b=???, c=???)