diff --git a/workers/link_validator_with_provided_list.py b/workers/link_validator_with_provided_list.py index 318b72d..558ba71 100644 --- a/workers/link_validator_with_provided_list.py +++ b/workers/link_validator_with_provided_list.py @@ -248,7 +248,7 @@ if __name__ == '__main__': current_hour = current_time.hour print("Current hour ", current_time.hour) print("Current minute ", current_time.minute) - if current_hour > 20 or current_hour < 9: + if current_hour > 18 or current_hour < 7: delay = 3600 print("wait for {} seconds".format(delay)) time.sleep(delay)