Skip to content

Commit 70ce1ff

Browse files
committed
fix lint
1 parent 9e4e00b commit 70ce1ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/agentex/lib/utils/registration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def get_auth_principal(env_vars: EnvironmentVariables):
2020
except Exception:
2121
return None
2222

23-
def get_build_info(env_vars: EnvironmentVariables):
23+
def get_build_info():
2424
build_info_path = os.environ.get("BUILD_INFO_PATH")
2525
logger.info(f"Getting build info from {build_info_path}")
2626
if not build_info_path:
@@ -51,7 +51,7 @@ async def register_agent(env_vars: EnvironmentVariables):
5151
"acp_url": full_acp_url,
5252
"acp_type": env_vars.ACP_TYPE,
5353
"principal_context": get_auth_principal(env_vars),
54-
"registration_metadata": get_build_info(env_vars)
54+
"registration_metadata": get_build_info()
5555
}
5656

5757
if env_vars.AGENT_ID:

0 commit comments

Comments
 (0)