##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 13\13.1584 - No Title.py
# Description: No Title
##############################################################################
bundo = ttk.Button(self.toolbar, text="Undo", padding="10", command=self.undo)
bundo.pack()
bclear = ttk.Button(self.toolbar, text="Clear", padding="10", command=self.clear)
bclear.pack()