This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from tkinter import * | |
| from tkinter import ttk | |
| import datetime | |
| class HistoryTabC: | |
| """This is a container class for saving previously executed commands | |
| It contains a text widget which shows commands content as well as | |
| combo box containng the names of the commands | |
| Commands are being labeld with a name and suffix of the date """ | |
| def __init__(self,root): | |
| """initializer for this class""" |