We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c0311f commit aea0086Copy full SHA for aea0086
dsg_lib/common_functions/email_validation.py
@@ -269,12 +269,6 @@ def validate_email_address(
269
for config in configurations:
270
271
res = validate_email_address(email, **config)
272
- # if res['valid']:
273
- # pprint.pprint(res, indent=4)
274
275
- # print(f"Time taken: {time.time() - t0:.2f}")
276
- # print(f"Email: {email} is valid: {res['valid']}")
277
- # validity.append(f"Email: {email} is valid: {res['valid']}")
278
validity.append(res)
279
t1 = time.time()
280
validity = sorted(validity, key=lambda x: x['email'])
0 commit comments