1
0
Fork 0

remove redundunt logs

This commit is contained in:
matsu-chara 2018-08-28 14:33:14 +09:00
parent 415ab46398
commit 48cc567b80
1 changed files with 0 additions and 2 deletions

View File

@ -121,7 +121,6 @@ def get_current_emoji_list(session):
page = 1
result = []
while True:
print("get current emoji_list page={}.".format(page))
data = {
'query': '',
'page': page,
@ -137,7 +136,6 @@ def get_current_emoji_list(session):
break
page = page + 1
print("{} emoji found".format(len(result)))
return result