]> git.armaanb.net Git - lightcards.git/blobdiff - lightcards/parse.py
Fix style per the suggestions of Flake8
[lightcards.git] / lightcards / parse.py
index 12c1073552082f147ef17539f23bba3d60a1aae7..457da136f4b30b503f3350dfdcf3f9dd7d58150c 100755 (executable)
@@ -31,8 +31,10 @@ def parse_html(html):
     return ([clean_text(x) for x in soup.find_all("th")],
             clean_list(outp))
 
+
 def main(file):
     return parse_html(md2html(file))
 
+
 if __name__ == "__main__":
     print(main(sys.argv[1]))