mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-13 07:06:58 +00:00
12 lines
209 B
Python
12 lines
209 B
Python
|
import allure
|
||
|
|
||
|
from gui.elements.qt.object import QObject
|
||
|
|
||
|
|
||
|
class TextLabel(QObject):
|
||
|
|
||
|
@property
|
||
|
@allure.step('Get text {0}')
|
||
|
def text(self) -> str:
|
||
|
return str(self.object.text)
|