File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -145,12 +145,8 @@ def parse_html_files(mpName):
145145 return
146146 keepLooping = True
147147
148- print (report_file_list )
149-
150148 while keepLooping :
151-
152149 try :
153- print (report_file_list [0 ])
154150 with open (report_file_list [0 ],"r" , encoding = 'utf-8' ) as fd :
155151 try :
156152 main_soup = BeautifulSoup ((fd ),features = "lxml" )
@@ -171,12 +167,8 @@ def parse_html_files(mpName):
171167 main_manage_api_report = False
172168 main_row_list = main_soup .table .table .tr .find_next_siblings ()
173169 main_count_list = main_row_list [- 1 ].td .find_next_siblings ()
174- print ("skipping..." ,report_file_list [0 ])
175-
176170 keepLooping = False
177171 except :
178- print ("skipping..." ,report_file_list [0 ])
179-
180172 if len (report_file_list ) > 0 :
181173 report_file_list .pop (0 )
182174 keepLooping = True
@@ -193,7 +185,6 @@ def parse_html_files(mpName):
193185
194186 insert_idx = 2
195187 for file in report_file_list [1 :]:
196- print (file )
197188 with open (file ,"r" , encoding = 'utf-8' ) as fd :
198189 try :
199190 soup = BeautifulSoup ((fd ),features = "lxml" )
You can’t perform that action at this time.
0 commit comments