Skip to content

Commit

Permalink
Merge pull request #4 from vChavezB/stack_worst_case
Browse files Browse the repository at this point in the history
Stack worst case fix
  • Loading branch information
vChavezB authored Dec 11, 2022
2 parents 111286d + 2310f89 commit 5a1c9bc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions puncover_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ def add_table_class(old_html):
return new_html

def fix_sort_table(old_html):
function_page = old_html.find("<th>Function</th>") != -1
# If its a function page no need to fix table
if function_page:
return None
new_html = add_table_class(old_html)
if new_html is None:
return None
Expand Down

0 comments on commit 5a1c9bc

Please sign in to comment.