mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-05-12 02:11:44 -04:00
9 lines
194 B
Python
9 lines
194 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
import wx
|
||
|
from base import basePanel
|
||
|
|
||
|
class listPanel(basePanel):
|
||
|
def __init__(self, parent, name):
|
||
|
super(listPanel, self).__init__(parent, name)
|
||
|
self.type = "list"
|