Skip to content

Commit

Permalink
indent issue corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
Violin1208 committed Aug 3, 2017
1 parent 302f04c commit 78217ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NLTK_textmine/smell_datamine_multiprocessing.py
Expand Up @@ -240,7 +240,7 @@ def main():
for file, smell in zip(files, executor.map(worker, files)):
smell_results = smell_results + smell
processed_files += 1
# bar.update(processed_files)
bar.update(processed_files)
smell_results = [x for x in smell_results if x]

end = timer()
Expand All @@ -254,7 +254,7 @@ def delete_database():
path = '../database/smells.sqlite'
if os.path.isfile(path):
os.remove(path)
else:
else:
print('No DB found for removal!')


Expand Down

0 comments on commit 78217ae

Please sign in to comment.