]> git.phdru.name Git - bookmarks_db.git/commitdiff
Style: Fix flake8 F821 undefined name 'unichr'
authorOleg Broytman <phd@phdru.name>
Sat, 16 Sep 2023 19:39:13 +0000 (22:39 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 12 Nov 2023 10:29:40 +0000 (13:29 +0300)
compat.py
parse_html/bkmk_parse_html.py

index ab6254c95cbb0b9282759af6c01b7197946c06c9..b1974453139d4ac649f9fc782988b3b5dbead32e 100644 (file)
--- a/compat.py
+++ b/compat.py
@@ -6,6 +6,8 @@ if PY2:
     # disable flake8 checks on python 3
     string_type = basestring  # noqa
     unicode = unicode  # noqa
+    unichr = unichr  # noqa
 else:
     string_type = str
     unicode = str
+    unichr = chr
index a3fc6395ab6d13533dce72a8a481d66217384acd..0043aa0c2438a9b20b81ff717acbd79ac2717528 100644 (file)
@@ -16,7 +16,7 @@ import os
 import re
 from htmlentitydefs import name2codepoint
 
-from ..compat import unicode
+from ..compat import unicode, unichr
 
 DEFAULT_CHARSET = "cp1251"  # Stupid default for Russian Cyrillic
 parsers = []