Is there a way in PyCharm to take instance attributes
class C():
def __init__(self, s: str): #instance attribute
pass
and add them as class attributes?
class C():
s:str # class attribute
def __init__(self, s: str): #instance attribute
pass