Skip to content

Commit 1374ded

Browse files
fix bug whwere name of missing env was not displayed
1 parent b506527 commit 1374ded

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def check_if_required_env_variables_are_present():
2929
}
3030
if not all(env in environ for env in required_env_variables):
3131
raise RuntimeError(
32-
f"The following required environmental variables have not been set - {(x for x in required_env_variables if x not in environ)}. Refer to code and Readme.MD for seeing what env keys are needed"
32+
f"The following required environmental variables have not been set - {list(x for x in required_env_variables if x not in environ)}. Refer to code and Readme.MD for seeing what env keys are needed"
3333
)
3434

3535

0 commit comments

Comments
 (0)