Add some spacing
This commit is contained in:
parent
2e378af361
commit
93e7a01698
@ -426,6 +426,7 @@ for _, user in user_dict.items():
|
||||
print(' ' + str(user.like_count) + ' likes')
|
||||
print(' Following ' + str(user.following_count))
|
||||
print(' Followed by ' + str(user.follower_count))
|
||||
|
||||
print(' Tracks:')
|
||||
for track in user.tracks:
|
||||
print(' ' + str(track))
|
||||
@ -434,6 +435,7 @@ for _, user in user_dict.items():
|
||||
track, \
|
||||
label='created'
|
||||
)
|
||||
|
||||
print(' Likes:')
|
||||
for track in user.likes:
|
||||
print(' ' + str(track))
|
||||
@ -442,6 +444,7 @@ for _, user in user_dict.items():
|
||||
track, \
|
||||
label='likes'
|
||||
)
|
||||
|
||||
print(' Followers:')
|
||||
for follower in user.followers:
|
||||
if follower in user_dict.keys():
|
||||
@ -454,6 +457,7 @@ for _, user in user_dict.items():
|
||||
user.url_username, \
|
||||
label='follows'
|
||||
)
|
||||
|
||||
print(' Following:')
|
||||
for following in user.following:
|
||||
if following in user_dict.keys():
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user