Skip to content

Commit

Permalink
Reorder print statements to address Issue 49
Browse files Browse the repository at this point in the history
  • Loading branch information
a-paxton committed Feb 4, 2020
1 parent ed972e8 commit 7634e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion align/prepare_transcripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,8 @@ def train(features):
for fileName in file_list:

# let us know which file we're processing
dataframe = pd.read_csv(fileName, sep='\t',encoding='utf-8')
print(("Processing: "+fileName))
dataframe = pd.read_csv(fileName, sep='\t',encoding='utf-8')

# clean up, merge, spellcheck, tokenize, lemmatize, and POS-tag
dataframe = InitialCleanup(dataframe,
Expand Down

0 comments on commit 7634e22

Please sign in to comment.