How do I get the name of the class I am currently in?
Example:
def get_input(class_name): [do things] return class_name_result class foo():
I think, it should be like this:
class foo(): input = get_input(__qualname__)