fixed commenting out the RecognizedURL

This commit is contained in:
doctor_dev 2025-05-30 16:19:22 +00:00
parent ce5552369d
commit 4a17f880c6
No known key found for this signature in database
GPG key ID: F12F7F71CB84AEAA

View file

@ -112,7 +112,7 @@ def IsURLValid(url: str) -> bool:
""" """
Checks if given URL is valid (RecognizeURLType recognizes it) Checks if given URL is valid (RecognizeURLType recognizes it)
""" """
return #RecognizeURLType(url) != 'invalid' return RecognizeURLType(url) != 'invalid'
def CheckUrl(url): def CheckUrl(url):