mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-05 03:12:29 -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"
|