From a0a8c88a5bf977c95fd4db5d950e4fbeeb1b55dc Mon Sep 17 00:00:00 2001 From: Robert Siurek <85109223+roberts911@users.noreply.github.com> Date: Thu, 19 Oct 2023 11:49:34 +0200 Subject: [PATCH] Fix expecting minimum 2 at custom_map values when is 1 --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 96df09c..592f241 100644 --- a/app.py +++ b/app.py @@ -299,7 +299,7 @@ def sync_all_teams(): print(f'Syncing all teams: {time.strftime("%A, %d. %B %Y %I:%M:%S %p")}') installations = get_app_installations() - custom_map, _ = load_custom_map() + custom_map, _, _ = load_custom_map() futures = [] install_count = 0 with ThreadPoolExecutor(max_workers=10) as exe: