Чистка. Удалены лишние отступы.

This commit is contained in:
MaD_CaT
2024-11-07 14:27:50 +03:00
parent 7ebdafb4ee
commit 0afbffac1c
4 changed files with 20 additions and 21 deletions

View File

@@ -15,14 +15,14 @@ func check_negative(val): # Проверка на отрицательно
else:
return val
func check_len(val, value):
func check_len(val, value):
if len(val) < 1:
return ''
else:
return value
func check_empty(val):
if str(val) == '':
return false
else: