update_skins.py

Remove leading zeros again
このコミットが含まれているのは:
bell07 2020-09-10 11:08:49 +02:00
コミット 77c00a0823
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -20,7 +20,7 @@ else:
for json in data["skins"]:
id = str(json["id"]).zfill(4)
id = str(json["id"])
# Texture file
raw_data = base64.b64decode(json["img"])