diff --git a/ui/main_window_controller.py b/ui/main_window_controller.py index 602a48c..30e1919 100644 --- a/ui/main_window_controller.py +++ b/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 diff --git a/ui/workers.py b/ui/workers.py index 900ea77..470753e 100644 --- a/ui/workers.py +++ b/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)