Changed the first solution of error __init__.py

Tried another approach that perfectly fits the logic of [@ezerinz's](https://github.com/ezerinz) email confirmation code
This commit is contained in:
Ulan Aitbay 2023-05-24 01:06:39 +05:00 committed by GitHub
parent 13d4a04501
commit 1a354adf3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,14 +52,10 @@ class Account:
quit()
while True:
time.sleep(5)
messages = mail_client.message_list()
# Check if method `message_list()` didn't return None or empty list.
if not messages or len(messages) == 0:
# If it returned None or empty list sleep for 5 seconds to wait for new message.
time.sleep(5)
continue
message_id = mail_client.message_list()[0]["id"]
message = mail_client.message(message_id)
verification_url = re.findall(