summaryrefslogtreecommitdiff
path: root/pyflakes/messages.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyflakes/messages.py')
-rw-r--r--pyflakes/messages.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/pyflakes/messages.py b/pyflakes/messages.py
index c2246cf..f45fd46 100644
--- a/pyflakes/messages.py
+++ b/pyflakes/messages.py
@@ -248,14 +248,6 @@ class ForwardAnnotationSyntaxError(Message):
self.message_args = (annotation,)
-class CommentAnnotationSyntaxError(Message):
- message = 'syntax error in type comment %r'
-
- def __init__(self, filename, loc, annotation):
- Message.__init__(self, filename, loc)
- self.message_args = (annotation,)
-
-
class RaiseNotImplemented(Message):
message = "'raise NotImplemented' should be 'raise NotImplementedError'"