From 9cc19b628b65952fc0774ec5850e24d416617ac0 Mon Sep 17 00:00:00 2001 From: lowolf25 <117158036+lowolf25@users.noreply.github.com> Date: Sun, 21 Jul 2024 21:37:57 +0800 Subject: [PATCH] Add additional comment in function documentation --- validations.py | 1 + 1 file changed, 1 insertion(+) diff --git a/validations.py b/validations.py index 2628db4..f0428fc 100644 --- a/validations.py +++ b/validations.py @@ -3,6 +3,7 @@ def validate_user(username, minlen): """Checks if the received username matches the required conditions.""" + """ Just for test purpose :)""" if type(username) != str: raise TypeError("username must be a string") if minlen < 1: