]> git.phdru.name Git - bookmarks_db.git/blobdiff - writers.py
Style: Fix flake8 E302 expected 2 blank lines, found 1
[bookmarks_db.git] / writers.py
index 25c3cdb5afac49525f0051c383353ed937c240df..3212e5a157d9c0fa2030a356a2bc5d3ffc535f1f 100644 (file)
@@ -5,7 +5,7 @@ This file is a part of Bookmarks database and Internet robot.
 """
 
 __author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 1997-2017 PhiloSoft Design"
+__copyright__ = "Copyright (C) 1997-2023 PhiloSoft Design"
 __license__ = "GNU GPL"
 
 __all__ = ['import_writer', 'writer']
@@ -16,6 +16,7 @@ from bkmk_objects import parse_params, set_params
 
 writer_name, writer_params = parse_params(environ.get("BKMK_WRITER", "html"))
 
+
 def import_writer(writer_name):
     exec("from Writers import bkmk_w%s" % writer_name)
     exec("writer = bkmk_w%s.writer_%s" % (writer_name, writer_name))