From 4120377c0be5794eff8fc57037d672d4ffbc9c6d Mon Sep 17 00:00:00 2001 From: Andris Raugulis Date: Thu, 20 Oct 2016 16:41:44 +0300 Subject: [PATCH] Remove unnecessary argument. --- ssh-audit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh-audit.py b/ssh-audit.py index 1ed19c9..cb7a1a4 100755 --- a/ssh-audit.py +++ b/ssh-audit.py @@ -1807,7 +1807,7 @@ class Utils(object): raise cls._type_err(v, 'native text') @classmethod - def is_ascii(cls, v, enc='utf-8'): + def is_ascii(cls, v): # type: (Union[text_type, str], str) -> bool try: if isinstance(v, (text_type, str)):