From 96cc437fe769931b007e9bb9fa5758fd99253e78 Mon Sep 17 00:00:00 2001 From: jtisaac Date: Fri, 2 Apr 2021 17:09:01 -0500 Subject: [PATCH] Fix misspelling --- sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync.py b/sync.py index 04b741ad0..22b098378 100644 --- a/sync.py +++ b/sync.py @@ -26,7 +26,7 @@ def parse_html_table(table): return result + filler_rows def html_to_spreadsheet_cell(html_element): - """ Parse HTML elmement, like Google to =HYPERLINK(www.google.com, Google) """ + """ Parse HTML element, like Google to =HYPERLINK(www.google.com, Google) """ link = html_element.find("a") if link: return '=HYPERLINK("{}", "{}")'.format(link['href'], link.contents[0])