Browse Source

- Missed setting purge to false by default and spamming the console with pokemon now its working

master
Dan 1 year ago
parent
commit
3d9b5f643e
  1. 1
      ui/main_window_controller.py
  2. 2
      ui/workers.py

1
ui/main_window_controller.py

@ -87,7 +87,6 @@ class MainWindowController:
# This method will be called in the main thread when the worker finishes
# Update the UI with the gathered forms
self.view.update_pokemon_forms(data)
print("Work's Done!", data)
def gather_home_storage_info(self):
pass

2
ui/workers.py

@ -59,7 +59,7 @@ class GatherPokemonFormsWorker(QRunnable):
return form_name
return "None"
def process_pokemon_entry(self, national_dex_number, pokemon_soup, force_refresh = True):
def process_pokemon_entry(self, national_dex_number, pokemon_soup, force_refresh = False):
found_forms = []
generation = get_generation_from_national_dex(national_dex_number)
pokemon_name = pokemon_soup.get_text(strip=True)

Loading…
Cancel
Save