Skip to content

Commit

Permalink
Update App.py
Browse files Browse the repository at this point in the history
  • Loading branch information
justudin authored Nov 7, 2016
1 parent 8a0e041 commit a0dc153
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions App.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import tkinter.messagebox
from tkinter.ttk import Frame, Label, Entry

class Example(Frame):
class App(Frame):
def __init__(self, parent):
Frame.__init__(self, parent)
self.parent = parent
Expand Down Expand Up @@ -122,8 +122,8 @@ def makeAsItIs(self, value):
def main():
root = Tk()
root.geometry("300x140")
app = Example(root)
app = App(root)
root.mainloop()

if __name__ == '__main__':
main()
main()

0 comments on commit a0dc153

Please sign in to comment.