From f26f8cdd9a709221fd506ad82763a1b2e540e6e7 Mon Sep 17 00:00:00 2001 From: trueold89 Date: Mon, 3 Jun 2024 20:57:29 +0300 Subject: [PATCH] Buffix in ENV class - CIRCLES_COUNT now returns int --- hellmbot/env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hellmbot/env.py b/hellmbot/env.py index 447ace4..06f8efe 100644 --- a/hellmbot/env.py +++ b/hellmbot/env.py @@ -45,7 +45,7 @@ class ENV(object): env = environ.get("CIRCLES_COUNT") if env is None: env = 9 - return env + return int(env) @property def CLIENT_ID(self) -> str: