We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e00e249 commit 477c792Copy full SHA for 477c792
1 file changed
veadk/tools/builtin_tools/execute_skills.py
@@ -147,7 +147,9 @@ def execute_skills(
147
try:
148
account_id = res["Result"]["AccountId"]
149
except KeyError as e:
150
- logger.error(f"Error occurred while getting account id: {e}, response is {res}")
+ logger.error(
151
+ f"Error occurred while getting account id: {e}, response is {res}"
152
+ )
153
return res
154
155
skill_space_id = os.getenv("SKILL_SPACE_ID", "")
@@ -243,7 +245,7 @@ def execute_skills(
243
245
region=region,
244
246
host=host,
247
header=header,
- scheme=scheme
248
+ scheme=scheme,
249
)
250
logger.debug(f"Invoke run code response: {res}")
251
0 commit comments