diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-04-05 08:21:59 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-04-05 08:50:06 +0200 |
commit | 71a79b39c0c4c23c966ad04579faac9b60f3c5cc (patch) | |
tree | f8f1cad5f03358be63b9a36c724cc6f40429abec | |
parent | 92b2a52d2002a90d14448f56f6cb432bdecf3901 (diff) | |
download | pylint-git-pylint-1.8.4.tar.gz |
Fix lint errorspylint-1.8.4
-rw-r--r-- | pylint/checkers/python3.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pylint/checkers/python3.py b/pylint/checkers/python3.py index b5d52fbd4..57ecb4986 100644 --- a/pylint/checkers/python3.py +++ b/pylint/checkers/python3.py @@ -545,9 +545,9 @@ class Python3Checker(checkers.BaseChecker): 'deprecated-string-function': { 'string': frozenset([ 'maketrans', 'atof', 'atoi', 'atol', 'capitalize', 'expandtabs', 'find', 'rfind', - 'index', 'rindex', 'count', 'lower', 'letters', 'split', 'rsplit', 'splitfields', 'join', - 'joinfields', 'lstrip', 'rstrip', 'strip', 'swapcase', 'translate', 'upper', - 'ljust', 'rjust', 'center', 'zfill', 'replace', + 'index', 'rindex', 'count', 'lower', 'letters', 'split', 'rsplit', 'splitfields', + 'join', 'joinfields', 'lstrip', 'rstrip', 'strip', 'swapcase', 'translate', + 'upper', 'ljust', 'rjust', 'center', 'zfill', 'replace', 'lowercase', 'letters', 'uppercase', 'atol_error', 'atof_error', 'atoi_error', 'index_error' ]) |