UnisKB/apps/common/forms/label/tooltip_label.py

15 lines
346 B
Python
Raw Normal View History

2025-04-17 10:01:33 +00:00
# coding=utf-8
"""
@project: MaxKB
@Author
@file tooltip_label.py
@date2024/8/22 17:19
@desc:
"""
from common.forms.label.base_label import BaseLabel
class TooltipLabel(BaseLabel):
def __init__(self, label, tooltip):
super().__init__('TooltipLabel', label, attrs={'tooltip': tooltip}, props_info={})