MCPcopy Index your code
hub / github.com/ndleah/python-mini-project / __init__

Method __init__

Chinese_FlashCard/app/app.py:4–13  ·  view source on GitHub ↗
(self,keys_list,dictionary)

Source from the content-addressed store, hash-verified

2
3class 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

Calls 1

setupMethod · 0.95

Tested by

no test coverage detected