Skip to content

Commit 1be6230

Browse files
committed
Updates to remove debug prints
1 parent 6ebd795 commit 1be6230

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

incremental_build_report_aggregator.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff 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")

0 commit comments

Comments
 (0)