Remove unused var
This commit is contained in:
parent
0759abccfd
commit
596dced55e
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ class MinecraftCollector(object):
|
||||||
data = json.load(json_file)
|
data = json.load(json_file)
|
||||||
json_file.close()
|
json_file.close()
|
||||||
counter = 0
|
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():
|
for _, uuid in value['tasks:9']['0:10']['completeUsers:9'].items():
|
||||||
if uuid == player['uuid']:
|
if uuid == player['uuid']:
|
||||||
counter++
|
counter++
|
||||||
|
|
Loading…
Reference in a new issue