MaxKB/apps/common/forms/label/tooltip_label.py
2024-08-23 17:47:23 +08:00

15 lines
346 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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={})