Skip to content

Commit efe00f9

Browse files
committed
added print of xlsx file name
1 parent fa1b7e5 commit efe00f9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ def insert_names(file_path):
301301
if not os.path.exists(file_path):
302302
raise ValueError("Not a valid path %s" % file_path)
303303
if file_path[-4:] == "xlsx":
304+
print("reading {}".format(file_path))
304305
df = pandas.read_excel(file_path, header=1)
305306
Company.add_companies(df["Name 1"].to_list())
306307
for _, row in df.iterrows():

0 commit comments

Comments
 (0)