Buffix in ENV class

- CIRCLES_COUNT now returns int
This commit is contained in:
trueold89 2024-06-03 20:57:29 +03:00
parent 015d939bd5
commit f26f8cdd9a
Signed by: trueold89
GPG Key ID: C122E85DD49E6B30
1 changed files with 1 additions and 1 deletions

View File

@ -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: