Remove unused var

This commit is contained in:
Markus Freitag 2020-01-11 17:41:22 +01:00
parent 0759abccfd
commit 596dced55e

View file

@ -75,7 +75,7 @@ class MinecraftCollector(object):
data = json.load(json_file)
json_file.close()
counter = 0
for key, value in data['questProgress:9'].items():
for _, value in data['questProgress:9'].items():
for _, uuid in value['tasks:9']['0:10']['completeUsers:9'].items():
if uuid == player['uuid']:
counter++