mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 00:51:10 +00:00
20 lines
400 B
Python
20 lines
400 B
Python
import logging
|
|
|
|
from gui.elements.object import QObject
|
|
from gui.objects_map import names
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class StatusModal(QObject):
|
|
|
|
def __init__(self):
|
|
super().__init__(names.statusModal)
|
|
self.wait_until_enabled()
|
|
|
|
|
|
class StatusStackModal(QObject):
|
|
def __init__(self):
|
|
super().__init__(names.statusStackModal)
|
|
self.wait_until_enabled()
|