remove early break

This commit is contained in:
Lukas Mehl 2019-10-19 15:27:38 +02:00
parent 82c2e43e2e
commit 6f244acdd6

View file

@ -166,8 +166,6 @@ def main():
key = "//".join([typ, level, land, kreis, stadt]) key = "//".join([typ, level, land, kreis, stadt])
result.update({key: [typ, level, land, kreis, stadt, fbname, fbLikes, fbVerified, twtname, twtFollower, twtVerified, instaName, instaFollower, instaVerified]}) result.update({key: [typ, level, land, kreis, stadt, fbname, fbLikes, fbVerified, twtname, twtFollower, twtVerified, instaName, instaFollower, instaVerified]})
idx += 1 idx += 1
if idx == 50:
break
with open("docs/result.json", "w") as f: with open("docs/result.json", "w") as f:
json.dump(result, f) json.dump(result, f)