mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-28 23:35:13 +00:00
e292a0d347
* Code was formatted with pep8 recommendations * Fix attaching squish server config
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')
|