Skip to content

Commit

Permalink
Update with new import statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
hreikin committed Apr 7, 2022
1 parent 8e52795 commit 02f8eaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tkintermd/__main__.py
@@ -1,11 +1,11 @@
from tkintermd.tkintermd_frame import TkinterMDFrame
from tkintermd.frame import TkintermdFrame

import tkinter as tk
from tkinter.constants import *

def main():
root = tk.Tk()
app = TkinterMDFrame(root)
app = TkintermdFrame(root)
app.pack(fill="both", expand=1)
app.mainloop()

Expand Down

0 comments on commit 02f8eaa

Please sign in to comment.