Skip to content

Commit 02f8eaa

Browse files
committed
Update with new import statement.
1 parent 8e52795 commit 02f8eaa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tkintermd/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
from tkintermd.tkintermd_frame import TkinterMDFrame
1+
from tkintermd.frame import TkintermdFrame
22

33
import tkinter as tk
44
from tkinter.constants import *
55

66
def main():
77
root = tk.Tk()
8-
app = TkinterMDFrame(root)
8+
app = TkintermdFrame(root)
99
app.pack(fill="both", expand=1)
1010
app.mainloop()
1111

0 commit comments

Comments
 (0)