diff options
-rw-r--r-- | pylint/checkers/stdlib.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pylint/checkers/stdlib.py b/pylint/checkers/stdlib.py index b6b8026..ac8b876 100644 --- a/pylint/checkers/stdlib.py +++ b/pylint/checkers/stdlib.py @@ -88,7 +88,7 @@ class StdlibChecker(BaseChecker): 'See http://docs.python.org/2/library/functions.html#open'), 'W1502': ('Using datetime.time in a boolean context.', 'boolean-datetime', - 'Using datetetime.time in a boolean context can hide ' + 'Using datetime.time in a boolean context can hide ' 'subtle bugs when the time they represent matches ' 'midnight UTC. This behaviour was fixed in Python 3.5. ' 'See http://bugs.python.org/issue13936 for reference.', @@ -96,8 +96,8 @@ class StdlibChecker(BaseChecker): 'W1503': ('Redundant use of %s with constant ' 'value %r', 'redundant-unittest-assert', - 'The first argument of assertTrue and assertFalse is' - 'a condition. If a constant is passed as parameter, that' + 'The first argument of assertTrue and assertFalse is ' + 'a condition. If a constant is passed as parameter, that ' 'condition will be always true. In this case a warning ' 'should be emitted.') } |