From 31ea58de8250b674586058e970d439f20094a7ae Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sat, 2 Sep 2023 14:02:23 +0300 Subject: [PATCH] Style: Fix flake8 warning E124 closing bracket does not match visual indentation --- bkmk_objects.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bkmk_objects.py b/bkmk_objects.py index 6897721..140cb98 100644 --- a/bkmk_objects.py +++ b/bkmk_objects.py @@ -5,13 +5,13 @@ This file is a part of Bookmarks database and Internet robot. """ __author__ = "Oleg Broytman " -__copyright__ = "Copyright (C) 2000-2017 PhiloSoft Design" +__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', -] + ] import os, urllib -- 2.39.2