[Style] Change filename of generated static .json files

This commit is contained in:
lukas 2023-07-18 16:59:44 +02:00
parent bb816c52d8
commit a413f8ce5e
1 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
__author__ = "Lukas Mahler"
__version__ = "1.0.0"
__date__ = "12.07.2023"
__date__ = "18.07.2023"
__email__ = "m@hler.eu"
__status__ = "Production"
@ -15,7 +15,7 @@ def main():
"""
Generate static .json files, this is different from the original typescript repository.
I like this .json format more for accessing the seeds later.
e.g. static_data['AWP][42]['percentage'] where 42 is the seed.
e.g. ['AWP]['42']['percentage'] where 42 is the seed.
"""
# Create instances of the calculators
@ -24,7 +24,7 @@ def main():
acid_calc = AcidFadeCalculator()
# Build a new dict using format [WEAPON][SEED] = seed, percentage, ranking
for calc, name in [(fade_calc, 'fade'), (amber_calc, 'amber'), (acid_calc, 'acid')]:
for calc, name in [(fade_calc, 'fade'), (amber_calc, 'fade_amber'), (acid_calc, 'fade_acid')]:
rebuild = {}
for obj in calc.get_all_fade_percentages():
rebuild[obj.weapon] = {}
@ -36,7 +36,7 @@ def main():
}
# dump the new dicts to a json file using 4 indents under ./generated
with open(f"./generated/{name}-percentages.json", 'w') as jf:
with open(f"./generated/{name}.json", 'w') as jf:
json.dump(rebuild, jf, indent=4)