]> git.phdru.name Git - bookmarks_db.git/blobdiff - bkmk_objects.py
Style: Fix flake8 E128 continuation line under-indented for visual indent
[bookmarks_db.git] / bkmk_objects.py
index 140cb981856bad7d3b3f9111ea68b5f4521a65b3..4031e5f60d8dfa0ac1379ce819f2962a202baa93 100644 (file)
@@ -9,8 +9,8 @@ __copyright__ = "Copyright (C) 2000-2023 PhiloSoft Design"
 __license__ = "GNU GPL"
 
 __all__ = ['Folder', 'Bookmark', 'Ruler', 'Walker', 'Writer', 'Robot',
-    'InverseLinker', 'Linear', 'make_linear', 'make_tree', 'break_tree',
-    'quote_title', 'unquote_title', 'parse_params', 'set_params',
+           'InverseLinker', 'Linear', 'make_linear', 'make_tree', 'break_tree',
+           'quote_title', 'unquote_title', 'parse_params', 'set_params',
     ]
 
 
@@ -54,8 +54,8 @@ class Bookmark(object):
     isBookmark = 1
 
     def __init__(self, href, add_date, last_visit=None, last_modified=None,
-          keyword=None, comment='', icon_href=None, icon=None,
-          charset=None, parser_charset=None):
+                 keyword=None, comment='', icon_href=None, icon=None,
+                 charset=None, parser_charset=None):
         protocol, request = urllib.splittype(href)
         user, password, port = None, None, None
         host, path = urllib.splithost(request)