10 lines
186 B
Python
10 lines
186 B
Python
|
|
||
|
class Module(object):
|
||
|
def __init__(self, theme):
|
||
|
self._theme = theme
|
||
|
|
||
|
def theme(self):
|
||
|
return self._theme
|
||
|
|
||
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|