Skip to content

Commit 727e1b8

Browse files
fix : minor edit
1 parent 373979d commit 727e1b8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

csv2vcf/VCF.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# -*- coding: utf-8 -*-
22
import os
3-
from tkinter.filedialog import askopenfilename
43
from tkinter import messagebox
54

65
name_dict={}
@@ -120,7 +119,7 @@ def csv_reader(file_name):
120119

121120
except FileNotFoundError:
122121
print("[Warning] Please Open CSV File")
123-
except Exception as e:
122+
except Exception:
124123
messagebox.showinfo("CSV2VCF", "Error In Reading Input File")
125124
print("[Error] In Reading Input File")
126125

csv2vcf/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
def open_folder(address):
2121
try:
2222
os.system("start "+address)
23-
except Exception as e:
23+
except Exception:
2424
print("Error In Opening Final File")
2525
def openfile():
2626
global filename

0 commit comments

Comments
 (0)