mirror of
https://github.com/3minbe/DBC_Converter.git
synced 2026-05-17 09:33:59 +09:00
12 lines
384 B
Python
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)
|