devel #11

Merged
Arsen Mirzaev Tatyano-Muradovich merged 47 commits from Alex/stcs:devel into stable 2025-10-11 11:58:37 +07:00
36 changed files with 1311 additions and 774 deletions
Showing only changes of commit fcdc9d7483 - Show all commits

View File

@@ -34,7 +34,7 @@ def is_number(value: str) -> bool:
# Convert the string to a float # Convert the string to a float
num = float(value) num = float(value)
# Check if the number is positive # Check if the number is positive
if num <= 0: if num < 0:
return False return False
# Check if the string contains "+" or "-" # Check if the string contains "+" or "-"
if "+" in value or "-" in value: if "+" in value or "-" in value: