Skip to content

Commit 28cdc2b

Browse files
committed
Add tkinter Notebook demo to main
1 parent 5534972 commit 28cdc2b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/main.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
@author: Aditya
55
6-
This is the main file and will import other modules/codes written for python
6+
This is the main file and will import other modules/codes written for python tkinter demonstration
77
'''
88

99
import program1 as p1
@@ -17,6 +17,7 @@
1717
import program9 as p9
1818
import program10 as p10
1919
import program11 as p11
20+
import program12 as p12
2021

2122
def main():
2223
p1.sayhello()
@@ -30,5 +31,7 @@ def main():
3031
p9.DisplayAppLaunch()
3132
p10.launchTopLevelApp()
3233
p11.launchPanedWindowApp()
34+
p12.launchNoteBookApp()
3335

34-
if __name__ == '__main__':main()
36+
if __name__ == '__main__':main()
37+

0 commit comments

Comments
 (0)