From 52d1e8f27bc1f1914e3c34d389d3887a855cb793 Mon Sep 17 00:00:00 2001 From: Joe Testa Date: Thu, 5 Nov 2020 20:28:14 -0500 Subject: [PATCH] Fixed pylint warning. --- src/ssh_audit/ssh_audit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssh_audit/ssh_audit.py b/src/ssh_audit/ssh_audit.py index 8fe1330..57d948e 100755 --- a/src/ssh_audit/ssh_audit.py +++ b/src/ssh_audit/ssh_audit.py @@ -902,7 +902,7 @@ def algorithm_lookup(alg_names: str) -> int: similar_algorithms = [ alg_unknown + " --> (" + alg_type + ") " + alg_name for alg_unknown in algorithms_not_found - for alg_type in adb.keys() + for alg_type in adb for alg_name in adb[alg_type] # Perform a case-insensitive comparison using 'casefold' # and match substrings using the 'in' operator.