1 2 3 4 5 6 7 8 9 10 11 12 13 14
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