]> git.phdru.name Git - bookmarks_db.git/commitdiff
Style: Fix `flake8` E114
authorOleg Broytman <phd@phdru.name>
Sun, 23 May 2021 14:20:21 +0000 (17:20 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 23 May 2021 14:20:21 +0000 (17:20 +0300)
Robots/bkmk_robot_base.py
parse_html/bkmk_ph_htmlparser.py

index 0600e7338d2b71c41492d73858acf72d0818ae84..728fe46f557d6084e56ed5466f15769ef86401b8 100644 (file)
@@ -45,8 +45,10 @@ def get_error(e):
         return "(%s)" % ' '.join(s)
 
 
-icons = {} # Icon cache; maps URL to a tuple (content type, data)
-           # or None if there is no icon.
+# Icon cache; maps URL to a tuple (content type, data)
+# or None if there is no icon.
+icons = {}
+
 
 class robot_base(Robot):
     timeout = 60
index 45e89f5119817787b0b926c7f43627a7dc22e7dd..70cba32d9073e2aa8f15389f69f8636eb0061b6f 100644 (file)
@@ -49,8 +49,9 @@ class HTMLParser(_HTMLParser):
             try:
                 # extract charset from "text/html; foo; charset=UTF-8, bar; baz;"
                 self.charset = content.lower().split('charset=')[1].split(';')[0].split(',')[0]
-                self.meta_charset = 1 # Remember that the charset was retrieved from
-                                      # META tag, not from the Content-Type header
+                # Remember that the charset was retrieved from
+                # META tag, not from the Content-Type header
+                self.meta_charset = 1
             except IndexError:
                 pass