Skip to content

Commit

Permalink
remove __init__ which is identical to parent (#726)
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Sep 1, 2022
1 parent 2a6e36b commit 7d6479e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pyflakes/messages.py
Expand Up @@ -134,10 +134,6 @@ def __init__(self, filename, loc, key):
class LateFutureImport(Message):
message = 'from __future__ imports must occur at the beginning of the file'

def __init__(self, filename, loc):
Message.__init__(self, filename, loc)
self.message_args = ()


class FutureFeatureNotDefined(Message):
"""An undefined __future__ feature name was imported."""
Expand Down

0 comments on commit 7d6479e

Please sign in to comment.