Skip to content

Commit

Permalink
increase the wait and add debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
shayki5 authored Apr 17, 2024
1 parent bdd03e8 commit a0a440d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']:
Expand Down

0 comments on commit a0a440d

Please sign in to comment.