Skip to content

Commit

Permalink
improved readability of the memo
Browse files Browse the repository at this point in the history
  • Loading branch information
ko-redtruck committed Apr 5, 2018
1 parent ce6ec9d commit 9ab8831
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions trendchecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def check_trending(url):
print("trending---")
print(i+ " --tag")
print(count1)
memo += str(count1) +". in trending, "
memo += str(count1) +". in TRENDING "
break
count1 += 1

Expand All @@ -55,7 +55,7 @@ def check_trending(url):
print("hot---")
print(i+ " --tag")
print(count2)
memo += str(count2) +". in hot "
memo += str(count2) +". in HOT "
break
count2 += 1

Expand All @@ -68,7 +68,7 @@ def check_trending(url):
break
count3 += 1

memo += ", "
memo += "| "

return memo

Expand Down

0 comments on commit 9ab8831

Please sign in to comment.