mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-04 19:12:28 -04:00
9 lines
229 B
Python
9 lines
229 B
Python
# -*- coding: utf-8 -*-
|
|
from gi.repository import Gtk
|
|
from base import basePanel
|
|
|
|
class favsPanel(basePanel):
|
|
def __init__(self, parent, name):
|
|
super(favsPanel, self).__init__(parent, name)
|
|
self.type = "favourites_timeline"
|