summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin <MartinBasti@users.noreply.github.com>2017-11-13 11:30:25 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2017-11-13 11:30:25 +0100
commit019dd8af97f5850c6a5a8649d5ac366ea9d80bc6 (patch)
treea843a0be975e4db0b3aa130fd3d5fdbe4d59a29d
parent915f16ecbd63aa0ee55da815935b9374672475af (diff)
downloadpylint-git-019dd8af97f5850c6a5a8649d5ac366ea9d80bc6.tar.gz
Remove forgotten TODO (#1735)
This TODO was resolved in: https://github.com/PyCQA/pylint/pull/1733#pullrequestreview-75930778 Resolves: #1301
-rw-r--r--pylint/checkers/stdlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/stdlib.py b/pylint/checkers/stdlib.py
index 45247c4e6..282f09aa1 100644
--- a/pylint/checkers/stdlib.py
+++ b/pylint/checkers/stdlib.py
@@ -107,7 +107,7 @@ class StdlibChecker(BaseChecker):
'The warning is emitted when a threading.Thread class '
'is instantiated without the target function being passed. '
'By default, the first parameter is the group param, not the target param. '),
- 'W1507': ('Using copy.copy(os.environ). Use os.environ.copy() ' # TODO: number
+ 'W1507': ('Using copy.copy(os.environ). Use os.environ.copy() '
'instead. ',
'shallow-copy-environ',
'os.environ is not a dict object but proxy object, so '