mirror of
https://github.com/status-im/status-app.git
synced 2026-08-31 00:51:10 +00:00
14 lines
263 B
Python
14 lines
263 B
Python
import allure
|
|
|
|
import configs
|
|
from gui.elements.object import QObject
|
|
from gui.objects_map import names
|
|
|
|
|
|
class SplashScreen(QObject):
|
|
|
|
def __init__(self):
|
|
super().__init__(names.splashScreen)
|
|
self.splash_screen = QObject(names.splashScreen)
|
|
|