|
|
|
@ -29,7 +29,7 @@ class GatherEvolutions(QRunnable): |
|
|
|
except Exception as e: |
|
|
|
print(f"Error gathering Pokémon home storage status: {e}") |
|
|
|
|
|
|
|
def gather_evolution_data(self, force_refresh = True): |
|
|
|
def gather_evolution_data(self, force_refresh = False): |
|
|
|
all_pokemon_forms = db.get_list_of_pokemon_forms() |
|
|
|
evolutions = {} |
|
|
|
|
|
|
|
@ -135,7 +135,7 @@ class GatherEvolutions(QRunnable): |
|
|
|
evolutions[composite_key] = (evolution_info) |
|
|
|
self.traverse_and_store(next_stage, evolutions, gender) |
|
|
|
|
|
|
|
def parse_evolution_chain(self, table, pokemon_form, force_refresh = True): |
|
|
|
def parse_evolution_chain(self, table, pokemon_form, force_refresh = False): |
|
|
|
cache_record_name = f"evo_{pokemon_form['pfic']}" |
|
|
|
if force_refresh: |
|
|
|
cache.purge(cache_record_name) |
|
|
|
|