mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-08 20:56:39 +00:00
9 lines
298 B
Python
9 lines
298 B
Python
from gui.elements.button import Button
|
|
from gui.elements.object import QObject
|
|
|
|
|
|
class TestnetModeBanner(QObject):
|
|
def __init__(self):
|
|
super(TestnetModeBanner, self).__init__('mainWindow_testnetBanner_ModuleWarning')
|
|
self._turn_off_button = Button('mainWindow_Turn_off_Button')
|