Skip to content

Commit f3c3edb

Browse files
fix : minor edit in exit function
1 parent 727e1b8 commit f3c3edb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csv2vcf/__main__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ def openfile():
3838
open_folder(folder)
3939
return filename
4040

41-
def exit():
41+
def tkinter_exit():
4242
root.quit()
4343
root.wm_title("CSV2VCF")
4444
label_1=Label(root,text="CSV2VCF",font=("arial", 30, "bold")).pack()
4545
label_2=Label(root,text="By Moduland",font=("arial", 22, "bold")).pack()
4646
b = Button(root, text="Open File", bg="gray40", fg="blue", font=("arial", 22, "bold"),width=10,height=3, command=openfile).pack(
4747
padx="12", pady="12")
4848
i = Button(root, text="Exit", bg="gray40", fg="blue", font=("arial", 22, "bold"), width=10, height=3,
49-
command=exit).pack(
49+
command=tkinter_exit).pack(
5050
padx="12", pady="12")
5151
root.mainloop()

0 commit comments

Comments
 (0)