51 "type annotation coverage of {0}% is too low"), |
51 "type annotation coverage of {0}% is too low"), |
52 |
52 |
53 "A891": QCoreApplication.translate( |
53 "A891": QCoreApplication.translate( |
54 "AnnotationsChecker", |
54 "AnnotationsChecker", |
55 "type annotation is too complex ({0} > {1})"), |
55 "type annotation is too complex ({0} > {1})"), |
56 |
|
57 "A999": QCoreApplication.translate( |
|
58 "AnnotationsChecker", |
|
59 "{0}: {1}"), |
|
60 } |
56 } |
61 |
57 |
62 _annotationsMessagesSampleArgs = { |
58 _annotationsMessagesSampleArgs = { |
63 "A001": ["arg1"], |
59 "A001": ["arg1"], |
64 "A002": ["args"], |
60 "A002": ["args"], |
65 "A003": ["kwargs"], |
61 "A003": ["kwargs"], |
66 "A881": [60], |
62 "A881": [60], |
67 "A891": [5, 3], |
63 "A891": [5, 3], |
68 "A999": ["SyntaxError", "Invalid Syntax"], |
|
69 } |
64 } |