class Appearance: """ Generic object to get configuration settings for a given program path - path to the configuration file """ def __init__(self, path): print("hello from appearance") self.path = path def get(self): pass