refactoring: modify function parameters and annotations to match

- the parameter description in the parameter and annotation did not match, so this was fixed.

Change-Id: I1557b74b5a2d0b81f68aa15149490bb178a5a716
Signed-off-by: Youngjun <yj.yoo@okestro.com>
This commit is contained in:
Youngjun 2024-03-12 15:56:17 +09:00
parent a230ea511e
commit 8806fbe1c2
1 changed files with 2 additions and 2 deletions

View File

@ -531,8 +531,8 @@ def validate_integer(value, name, min_value=None, max_value=None):
:param value: the value of the integer
:param name: the name of the integer
:param min_length: the min_length of the integer
:param max_length: the max_length of the integer
:param min_value: the lowest integer permitted in the range
:param max_value: the highest integer permitted in the range
:returns: integer
"""
try: