From cdfe06e75db353439d8e124ffcc79db3a10d22b6 Mon Sep 17 00:00:00 2001 From: Andris Raugulis Date: Thu, 20 Oct 2016 17:19:37 +0300 Subject: [PATCH] Fix type after argument removal. --- ssh-audit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh-audit.py b/ssh-audit.py index af9c228..e1f82df 100755 --- a/ssh-audit.py +++ b/ssh-audit.py @@ -1812,7 +1812,7 @@ class Utils(object): @classmethod def is_ascii(cls, v): - # type: (Union[text_type, str], str) -> bool + # type: (Union[text_type, str]) -> bool try: if isinstance(v, (text_type, str)): v.encode('ascii')