7 lines
144 B
Python
7 lines
144 B
Python
|
|
||
|
class Theme(object):
|
||
|
def __init__(self, name='default', iconset=None):
|
||
|
pass
|
||
|
|
||
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|