Method
__init__
(self,keys_list,dictionary)
Source from the content-addressed store, hash-verified
| 2 | |
| 3 | class MainApp(tk.Tk): |
| 4 | def __init__(self,keys_list,dictionary): |
| 5 | super().__init__() |
| 6 | self.geometry("350x350") |
| 7 | self.title("@MyApp") |
| 8 | self.configure(bg="#C2FCEE") |
| 9 | self.resizable(False,False) |
| 10 | self.scrollbar = tk.Scrollbar(orient='vertical',relief='groove') |
| 11 | self.keyslist = keys_list |
| 12 | self.dictionary = dictionary |
| 13 | self.setup() |
| 14 | |
| 15 | def setup(self): |
| 16 | self.widgets() |
Callers
nothing calls this directly
Tested by
no test coverage detected