From cb5ad55f4d1ff2619e79fc516f2e1b91aea4fdb7 Mon Sep 17 00:00:00 2001 From: Zhiwei Liang <121905282+zliang-akamai@users.noreply.github.com> Date: Mon, 2 Feb 2026 22:43:38 -0500 Subject: [PATCH] Potential fix for code scanning alert no. 2: Variable defined multiple times Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- test/integration/test_ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/test_ssh.py b/test/integration/test_ssh.py index efb3d8e..52f9703 100644 --- a/test/integration/test_ssh.py +++ b/test/integration/test_ssh.py @@ -5,7 +5,7 @@ from linode_metadata import AsyncMetadataClient, MetadataClient -def test_get_ssh_keys(client: MetadataClient): +def test_get_ssh_keys_sync(client: MetadataClient): ssh_keys = client.get_ssh_keys() inspect_ssh_keys_response(ssh_keys)