Skip to content

Commit

Permalink
Fix misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
jtisaac committed Apr 2, 2021
1 parent aa56616 commit 96cc437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sync.py
Expand Up @@ -26,7 +26,7 @@ def parse_html_table(table):
return result + filler_rows

def html_to_spreadsheet_cell(html_element):
""" Parse HTML elmement, like <a href=www.google.com>Google</a> to =HYPERLINK(www.google.com, Google) """
""" Parse HTML element, like <a href=www.google.com>Google</a> to =HYPERLINK(www.google.com, Google) """
link = html_element.find("a")
if link:
return '=HYPERLINK("{}", "{}")'.format(link['href'], link.contents[0])
Expand Down

0 comments on commit 96cc437

Please sign in to comment.