summaryrefslogtreecommitdiff
path: root/src/get_i3_appearence.py
blob: 961740d6c3889afcd9a250079333c82bf071f7fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12

from appearance import Appearance

class i3_Appearence(Appearance):
    
    def __init__(self, path):
        super().__init__(self)

    def get(self):
        pass

test = i3_Appearence("test")