From a0a440dfa459c484d96207063e7a29ab6657ada4 Mon Sep 17 00:00:00 2001 From: Shayki Abramczyk Date: Wed, 17 Apr 2024 09:23:02 +0300 Subject: [PATCH] increase the wait and add debug print --- bot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 75f56ac6..18caf6d1 100644 --- a/bot.py +++ b/bot.py @@ -36,9 +36,10 @@ def get_data_from_sheets_on_start(): # Get all values from column D column_d_values = sheet.col_values(4) # Get values from column D (index 4) print(column_d_values) - time.sleep(100) + time.sleep(120) for index, value in enumerate(column_d_values, start=1): corresponding_value_e = sheet.cell(index, 5).value + print(corresponding_value_e) if corresponding_value_e == "not found": states['not_found_values'].append(value) if states['not_found_values']: