diff --git a/app.py b/app.py index 9fcb915..8e3aaf5 100644 --- a/app.py +++ b/app.py @@ -61,8 +61,8 @@ def get_inference(token, period): def convert_period_to_seconds(period): """Конвертируем период в секунды.""" - if period.endswith("min"): - return int(period[:-3]) * 60 + if period.endswith("m"): + return int(period[:-1]) * 60 elif period.endswith("h"): return int(period[:-1]) * 3600 elif period.endswith("d"):