mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 13:12:30 -06:00
11 lines
216 B
Python
11 lines
216 B
Python
|
"""
|
||
|
Palette for Prototyping
|
||
|
"""
|
||
|
|
||
|
from ProtoPaletteBase import *
|
||
|
|
||
|
class ProtoPalette(ProtoPaletteBase):
|
||
|
def __init__(self):
|
||
|
self.dirname = os.path.dirname(__file__)
|
||
|
ProtoPaletteBase.__init__(self)
|