Update config.py

This commit is contained in:
Egor
2025-09-04 15:24:29 +03:00
committed by GitHub
parent b292442e8d
commit 835e5e6f7f

View File

@@ -319,12 +319,11 @@ class Settings(BaseSettings):
price = int(parts[1])
enabled = parts[2].lower() == 'true'
if enabled:
packages.append({
"gb": gb,
"price": price,
"enabled": enabled
})
packages.append({
"gb": gb,
"price": price,
"enabled": enabled
})
except ValueError:
continue