Skip to content

Commit

Permalink
Fixed #201
Browse files Browse the repository at this point in the history
  • Loading branch information
oadams committed Oct 13, 2018
1 parent 90dc954 commit 4cdcd13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion persephone/corpus.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ def get_untranscribed_prefixes(self) -> List[str]:
return get_untranscribed_prefixes_from_file(self.tgt_dir)

def get_untranscribed_fns(self) -> List[str]:
feat_fns = [os.path.join(str(self.feat_dir), "untranscribed", "%s.%s.npy" % (prefix, self.feat_type))
feat_fns = [os.path.join(str(self.feat_dir), "%s.%s.npy" % (prefix, self.feat_type))
for prefix in self.untranscribed_prefixes]
return feat_fns

Expand Down

0 comments on commit 4cdcd13

Please sign in to comment.