From 31702b14fb7a5f5f6f5102a211cfa26614b30fe5 Mon Sep 17 00:00:00 2001 From: Oleksandr Kozlov Date: Thu, 19 Jun 2025 19:10:40 +0200 Subject: [PATCH] fix: correct function name from addressVal to address_val --- Address Validator/AddressValidator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Address Validator/AddressValidator.py b/Address Validator/AddressValidator.py index 0dc49be1..70a1ec26 100644 --- a/Address Validator/AddressValidator.py +++ b/Address Validator/AddressValidator.py @@ -1,4 +1,4 @@ -def addressVal(address): +def address_val(address): dot = address.find(".") at = address.find("@") if (dot == -1): @@ -13,4 +13,4 @@ def addressVal(address): print("A valid email address needs an '@' symbol and a '.'") x = input("Input your email address:") - addressVal(x) + address_val(x)