From e0d8078bf1a32d69d684cb8e59d55e9dc930d89c Mon Sep 17 00:00:00 2001 From: UpstreamData Date: Wed, 5 Jan 2022 11:22:02 -0700 Subject: [PATCH] fixed a small bug with the ip table not resetting at the start of the scan --- cfg_util/func/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cfg_util/func/__init__.py b/cfg_util/func/__init__.py index 67c19744..feada205 100644 --- a/cfg_util/func/__init__.py +++ b/cfg_util/func/__init__.py @@ -38,6 +38,7 @@ async def set_progress_bar_len(amount): async def scan_network(network): await update_ui_with_data("status", "Scanning") await update_ui_with_data("hr_total", "") + window["ip_table"].update([]) network_size = len(network) miner_generator = network.scan_network_generator() await set_progress_bar_len(2 * network_size)