DBC_Converter/venv/Lib/site-packages/ttkwidgets/frames/__init__.py
2025-01-03 23:49:59 +09:00

12 lines
384 B
Python

# Copyright (c) The ttkwidgets authors 2017
# Available under the license found in LICENSE
from .scrolledframe import ScrolledFrame
from .toggledframe import ToggledFrame
from .tooltip import Tooltip
def Balloon(*args, **kwargs):
from warnings import warn
warn("'Balloon' has been renamed to 'Tooltip'", DeprecationWarning, stacklevel=2)
return Tooltip(*args, **kwargs)