We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 373979d commit 727e1b8Copy full SHA for 727e1b8
csv2vcf/VCF.py
@@ -1,6 +1,5 @@
1
# -*- coding: utf-8 -*-
2
import os
3
-from tkinter.filedialog import askopenfilename
4
from tkinter import messagebox
5
6
name_dict={}
@@ -120,7 +119,7 @@ def csv_reader(file_name):
120
119
121
except FileNotFoundError:
122
print("[Warning] Please Open CSV File")
123
- except Exception as e:
+ except Exception:
124
messagebox.showinfo("CSV2VCF", "Error In Reading Input File")
125
print("[Error] In Reading Input File")
126
csv2vcf/__main__.py
@@ -20,7 +20,7 @@
20
def open_folder(address):
21
try:
22
os.system("start "+address)
23
24
print("Error In Opening Final File")
25
def openfile():
26
global filename
0 commit comments