diff options
author | Simu Toni <simutoni@gmail.com> | 2015-03-28 18:28:08 +0200 |
---|---|---|
committer | Simu Toni <simutoni@gmail.com> | 2015-03-28 18:28:08 +0200 |
commit | bc4d7d822238e2acf738cb9437ccae11034e5e91 (patch) | |
tree | e2372649b6fc11c6232ce08d3f679571a0997173 /pylint/checkers/python3.py | |
parent | 8828a5bb41eb9198a3d80983d655d445ac917b14 (diff) | |
download | pylint-bc4d7d822238e2acf738cb9437ccae11034e5e91.tar.gz |
issue-422 solved some pylint warnings when running pylint on pylint code base
Diffstat (limited to 'pylint/checkers/python3.py')
-rw-r--r-- | pylint/checkers/python3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/python3.py b/pylint/checkers/python3.py index 837cbef..ccffce7 100644 --- a/pylint/checkers/python3.py +++ b/pylint/checkers/python3.py @@ -448,7 +448,7 @@ class Python3Checker(checkers.BaseChecker): args = node.args elif (isinstance(node.func, astroid.Name) - and node.func.name == 'sorted'): + and node.func.name == 'sorted'): inferred = utils.safe_infer(node.func) if not inferred: return |