From ee2252cf5590f758c2d469111c818e7229907634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Tue, 4 Feb 2020 20:15:50 -0500 Subject: [PATCH] fix too many blank lines(2) --- plugins/tipue-search/tipue_search.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugins/tipue-search/tipue_search.py b/plugins/tipue-search/tipue_search.py index c5ad06d..2880850 100644 --- a/plugins/tipue-search/tipue_search.py +++ b/plugins/tipue-search/tipue_search.py @@ -35,7 +35,6 @@ class Tipue_Search_JSON_Generator(object): self.output_path = output_path self.json_nodes = [] - def create_json_node(self, page): if getattr(page, 'status', 'published') != 'published': @@ -61,7 +60,6 @@ class Tipue_Search_JSON_Generator(object): self.json_nodes.append(node) - def create_tpage_node(self, srclink): srcfile = open(os.path.join(self.output_path, self.tpages[srclink]), encoding='utf-8') @@ -80,7 +78,6 @@ class Tipue_Search_JSON_Generator(object): self.json_nodes.append(node) - def generate_output(self, writer): path = os.path.join(self.output_path, 'tipuesearch_content.json')