We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 111286d + 2310f89 commit 5a1c9bcCopy full SHA for 5a1c9bc
puncover_html.py
@@ -79,6 +79,10 @@ def add_table_class(old_html):
79
return new_html
80
81
def fix_sort_table(old_html):
82
+ function_page = old_html.find("<th>Function</th>") != -1
83
+ # If its a function page no need to fix table
84
+ if function_page:
85
+ return None
86
new_html = add_table_class(old_html)
87
if new_html is None:
88
return None
0 commit comments