()
| 3 | from models import create_dictionary |
| 4 | |
| 5 | def main(): |
| 6 | dct = create_dictionary() |
| 7 | keyslist = list(dct.keys()) |
| 8 | shuffle(keyslist) |
| 9 | app = MainApp(keyslist,dct) |
| 10 | app.mainloop() |
| 11 | |
| 12 | if __name__ == "__main__": |
| 13 | main() |
no test coverage detected