summaryrefslogtreecommitdiff
path: root/src/appearance.py
blob: 013d5fc39ec7d75f8254417afca3d5066d131cb4 (plain)
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