diff --git a/gso/utils/helpers.py b/gso/utils/helpers.py
index e9025a950fc13aa2255b59cc8a299af3b7a92093..c43a80737f56e37e3288e78d89a0ab38dced94e4 100644
--- a/gso/utils/helpers.py
+++ b/gso/utils/helpers.py
@@ -279,8 +279,7 @@ def validate_tt_number(tt_number: str) -> str:
 
     :param str tt_number: The TT number as string to validate
 
-    :return str: The tt number string, if tt number match was successful, otherwise it will throw a ValueError
-    exception.
+    :return str: The TT number string if TT number match was successful, otherwise it will raise a ValueError.
     """
     pattern = r"^TT#\d{16}$"
     if not bool(re.match(pattern, tt_number)):