Assume I define a class with class level variables with type hints (e.g. something like the new python 3.7 dataclasses
)
class Person:
name: str
age: int
def parse_me(self):
"what do I do here??"
How can I get the pairs of (variable name, variable type)
?