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
pull/598/head
Ulan Aitbay 1 year ago committed by GitHub
parent 13d4a04501
commit 1a354adf3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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(

Loading…
Cancel
Save