Skip to content

Commit

Permalink
delete unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
HuiGong-dev committed Oct 31, 2021
1 parent 409916c commit 82b9016
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,10 @@ def get_uebung_links(table):
# Return added item list and deleted item list
def getDifference(fresh_links, storage_links):
added = []
# deleted = []
for item in fresh_links:
if item not in storage_links:
added.append(url + item)
# for item in storage_links:
# if item not in fresh_links:
# deleted.append(url + item)

return added

# Prepare result text for telegram bot
Expand Down

0 comments on commit 82b9016

Please sign in to comment.