@@ -179,12 +179,12 @@ select = [
179
179
" FA" , # flake8-future-annotations (warn if certain from __future__ imports are used but missing)
180
180
" FAST" , # FastAPI specific warnings
181
181
# "FBT", # flake8-boolean-trap (force all boolean arguments passed to functions to be keyword arguments and not positional)
182
- " FIX" , # flake8-fixme (warn about lines containing FIXME, TODO, XXX, or HACK)
183
- " FLY" , # flynt (automatically convert from old school string .format to f-strings)
184
- # "FURB", # refurb (A tool for refurbishing and modernizing Python codebases)
185
- " G" , # flake8-logging-format (warn about logging statements using outdated string formatting methods)
186
- " I" , # isort (sort all import statements in the order established by isort)
187
- " ICN" , # flake8-import-conventions (force idiomatic import conventions for certain modules typically imported as something else)
182
+ " FIX" , # flake8-fixme (warn about lines containing FIXME, TODO, XXX, or HACK)
183
+ " FLY" , # flynt (automatically convert from old school string .format to f-strings)
184
+ " FURB" , # refurb (A tool for refurbishing and modernizing Python codebases)
185
+ " G" , # flake8-logging-format (warn about logging statements using outdated string formatting methods)
186
+ " I" , # isort (sort all import statements in the order established by isort)
187
+ " ICN" , # flake8-import-conventions (force idiomatic import conventions for certain modules typically imported as something else)
188
188
# "INP", # flake8-no-pep420 (warn about files in the implicit namespace - i.e. force creation of __init__.py files to make packages)
189
189
" INT" , # flake8-gettext (warnings that only apply when you are internationalizing your strings)
190
190
# "ISC", # flake8-implicit-str-concat (warnings related to implicit vs explicit string concatenation)
0 commit comments