From bcbdcceab38a0ca6775bec7c3e885e37114103c8 Mon Sep 17 00:00:00 2001 From: wuzewu Date: Fri, 31 May 2019 11:33:39 +0800 Subject: [PATCH] fix typo --- paddlehub/io/parser.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/paddlehub/io/parser.py b/paddlehub/io/parser.py index a3c7b4aa..924cd3a0 100644 --- a/paddlehub/io/parser.py +++ b/paddlehub/io/parser.py @@ -30,7 +30,7 @@ class CSVFileParser(object): pass def parse(self, csv_file): - with codecs.open(txt_file, "r", sys.stdin.encoding) as file: + with codecs.open(csv_file, "r", sys.stdin.encoding) as file: content = file.read() content = content.split('\n') self.title = content[0].split(',') @@ -57,7 +57,8 @@ class YAMLFileParser(object): pass def parse(self, yaml_file): - with codecs.open(txt_file, "r", sys.stdin.encoding) as file: + with codecs.open(yaml_file, "r", sys.stdin.encoding) as file: + print("come to here") content = file.read() return yaml.load(content, Loader=yaml.BaseLoader) -- GitLab