Add some spacing

This commit is contained in:
Thomas Wade 2018-09-30 10:29:35 +09:30
parent 2e378af361
commit 93e7a01698

View File

@ -426,6 +426,7 @@ for _, user in user_dict.items():
print(' ' + str(user.like_count) + ' likes') print(' ' + str(user.like_count) + ' likes')
print(' Following ' + str(user.following_count)) print(' Following ' + str(user.following_count))
print(' Followed by ' + str(user.follower_count)) print(' Followed by ' + str(user.follower_count))
print(' Tracks:') print(' Tracks:')
for track in user.tracks: for track in user.tracks:
print(' ' + str(track)) print(' ' + str(track))
@ -434,6 +435,7 @@ for _, user in user_dict.items():
track, \ track, \
label='created' label='created'
) )
print(' Likes:') print(' Likes:')
for track in user.likes: for track in user.likes:
print(' ' + str(track)) print(' ' + str(track))
@ -442,6 +444,7 @@ for _, user in user_dict.items():
track, \ track, \
label='likes' label='likes'
) )
print(' Followers:') print(' Followers:')
for follower in user.followers: for follower in user.followers:
if follower in user_dict.keys(): if follower in user_dict.keys():
@ -454,6 +457,7 @@ for _, user in user_dict.items():
user.url_username, \ user.url_username, \
label='follows' label='follows'
) )
print(' Following:') print(' Following:')
for following in user.following: for following in user.following:
if following in user_dict.keys(): if following in user_dict.keys():