12 lines
227 B
Python
12 lines
227 B
Python
|
"""
|
||
|
Palette for Prototyping
|
||
|
"""
|
||
|
|
||
|
from .ProtoPaletteBase import *
|
||
|
import os
|
||
|
|
||
|
class ProtoPalette(ProtoPaletteBase):
|
||
|
def __init__(self):
|
||
|
self.dirname = os.path.dirname(__file__)
|
||
|
ProtoPaletteBase.__init__(self)
|