Skip to content

Commit

Permalink
[minor] print code un-indent
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoongi Kim committed Jan 4, 2020
1 parent 3ec635f commit 4b936e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,12 +270,12 @@ def imbalance_check(self):
dict_too_small[dir] = n_files

if len(dict_too_small) >= 1:
print('Data imbalance detected.')
print('Below keywords have smaller than 50% of average file count.')
print('I recommend you to remove these directories and re-download for that keyword.')
print('_________________________________')
print('Too small file count directories:')
for dir, n_files in dict_too_small.items():
print('Data imbalance detected.')
print('Below keywords have smaller than 50% of average file count.')
print('I recommend you to remove these directories and re-download for that keyword.')
print('_________________________________')
print('Too small file count directories:')
print('dir: {}, file_count: {}'.format(dir, n_files))

print("Remove directories above? (y/n)")
Expand Down

0 comments on commit 4b936e0

Please sign in to comment.