mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 23:47:20 +00:00
13 lines
225 B
Python
13 lines
225 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
class ToolTip:
|
|
def __init__(self, parent):
|
|
"""class definition"""
|
|
self.parent = parent
|
|
|
|
|
|
def createToolTip(self):
|
|
"""function to create tool tip for label"""
|