Removed unnecessary print statements

Signed-off-by: Aarush289 <cs24b064@smail.iitm.ac.in>
This commit is contained in:
Aarush289 2025-10-25 13:28:40 +05:30 committed by GitHub
parent 859b850629
commit a83c17f21e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 2 deletions

View File

@ -42,8 +42,6 @@ def valid_hostname(
host = host[:-1]
parts = host.split(".")
if len(parts) < 2 and not allow_single_label:
# log.warn("Its a name like google")
print("itegb")
return False
return all(_LABEL.match(p) for p in parts)