mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
10 lines
216 B
Python
10 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)
|