summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/flake8/plugins/pyflakes.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/flake8/plugins/pyflakes.py b/src/flake8/plugins/pyflakes.py
index b216b62..73ed376 100644
--- a/src/flake8/plugins/pyflakes.py
+++ b/src/flake8/plugins/pyflakes.py
@@ -26,6 +26,21 @@ FLAKE8_PYFLAKES_CODES = {
"ImportStarUsage": "F405",
"ImportStarNotPermitted": "F406",
"FutureFeatureNotDefined": "F407",
+ "PercentFormatInvalidFormat": "F501",
+ "PercentFormatExpectedMapping": "F502",
+ "PercentFormatExpectedSequence": "F503",
+ "PercentFormatExtraNamedArguments": "F504",
+ "PercentFormatMissingArgument": "F505",
+ "PercentFormatMixedPositionalAndNamed": "F506",
+ "PercentFormatPositionalCountMismatch": "F507",
+ "PercentFormatStarRequiresSequence": "F508",
+ "PercentFormatUnsupportedFormatCharacter": "F509",
+ "StringDotFormatInvalidFormat": "F521",
+ "StringDotFormatExtraNamedArguments": "F522",
+ "StringDotFormatExtraPositionalArguments": "F523",
+ "StringDotFormatMissingArgument": "F524",
+ "StringDotFormatMixingAutomatic": "F525",
+ "FStringMissingPlaceholders": "F541",
"MultiValueRepeatedKeyLiteral": "F601",
"MultiValueRepeatedKeyVariable": "F602",
"TooManyExpressionsInStarredAssignment": "F621",
@@ -33,6 +48,7 @@ FLAKE8_PYFLAKES_CODES = {
"AssertTuple": "F631",
"IsLiteral": "F632",
"InvalidPrintSyntax": "F633",
+ "IfTuple": "F634",
"BreakOutsideLoop": "F701",
"ContinueOutsideLoop": "F702",
"ContinueInFinally": "F703",