You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When validating a URL without a protocol (expected to fail), a TypeError gets raised incorrectly because a stripped value string is never created (resulting in the code attempting to iterate over a NoneType). Should instead raise an InvalidURLError.
The text was updated successfully, but these errors were encountered:
When validating a URL without a protocol (expected to fail), a
TypeError
gets raised incorrectly because a stripped value string is never created (resulting in the code attempting to iterate over aNoneType
). Should instead raise anInvalidURLError
.The text was updated successfully, but these errors were encountered: