6 lines
109 B
Python
6 lines
109 B
Python
|
from panel.Panel import Panel
|
||
|
|
||
|
class FriendsPanel(Panel):
|
||
|
def __init__(self, shell):
|
||
|
Panel.__init__(self)
|