|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2020 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 |
|
7 """ |
|
8 Module implementing message translations for the code style plugin messages |
|
9 (miscellaneous part). |
|
10 """ |
|
11 |
|
12 from PyQt5.QtCore import QCoreApplication |
|
13 |
|
14 _simplifyMessages = { |
|
15 "Y101": QCoreApplication.translate( |
|
16 "SimplifyChecker", |
|
17 "Multiple 'isinstance()' calls which can be merged into a single " |
|
18 "call for variable '{0}'"), |
|
19 } |
|
20 |
|
21 _simplifyMessagesSampleArgs = { |
|
22 "Y101": ["foo"], |
|
23 } |