You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Emitted when the `continue` keyword is found inside a finally clause. This
113
113
will raise a SyntaxWarning starting in Python 3.14.
@@ -193,7 +193,7 @@ Basic checker Messages
193
193
:missing-parentheses-for-call-in-test (W0126): *Using a conditional statement with potentially wrong function or method call due to missing parentheses*
194
194
Emitted when a conditional statement (If or ternary if) seems to wrongly call
195
195
a function due to missing parentheses
196
-
:comparison-of-constants (R0133): *Comparison between constants: '%s %s %s' has a constant value*
196
+
:comparison-of-constants (R0133): *Comparison between constants: "%s %s %s" has a constant value*
197
197
When two literals are compared with each other the result is a constant.
198
198
Using the constant directly is both easier to read and more performant.
199
199
Initializing 'True' and 'False' this way is not required since Python 2.3.
0 commit comments