mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-08-25 17:39:23 +00:00
9 lines
220 B
Python
9 lines
220 B
Python
# -*- coding: utf-8 -*-
|
|
from gi.repository import Gtk
|
|
from base import basePanel
|
|
|
|
class searchPanel(basePanel):
|
|
def __init__(self, parent, name):
|
|
super(searchPanel, self).__init__(parent, name)
|
|
self.type = "search"
|