7 """ |
7 """ |
8 Module implementing message translations for the code style plugin messages |
8 Module implementing message translations for the code style plugin messages |
9 (pathlib part). |
9 (pathlib part). |
10 """ |
10 """ |
11 |
11 |
12 from PyQt5.QtCore import QCoreApplication |
12 from PyQt6.QtCore import QCoreApplication |
13 |
13 |
14 _pathlibMessages = { |
14 _pathlibMessages = { |
15 "P101": QCoreApplication.translate( |
15 "P101": QCoreApplication.translate( |
16 "PathlibChecker", |
16 "PathlibChecker", |
17 "os.chmod('foo', 0o444) should be replaced by foo_path.chmod(0o444)"), |
17 "os.chmod('foo', 0o444) should be replaced by foo_path.chmod(0o444)"), |