5 # Original (c) 2005 Divmod, Inc. See LICENSE file for details |
5 # Original (c) 2005 Divmod, Inc. See LICENSE file for details |
6 # |
6 # |
7 # This module is based on pyflakes for Python2 but was heavily hacked to |
7 # This module is based on pyflakes for Python2 but was heavily hacked to |
8 # work with Python3 and Qt (translatable messages) |
8 # work with Python3 and Qt (translatable messages) |
9 |
9 |
|
10 """ |
|
11 Module implementing the messages for py3flakes. |
|
12 """ |
|
13 |
10 from PyQt4.QtCore import QCoreApplication |
14 from PyQt4.QtCore import QCoreApplication |
11 |
15 |
12 |
16 |
13 class Message(object): |
17 class Message(object): |
14 """ |
18 """ |