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
Summary:
There are two types of change in this diff:
1. Replace `nolint` tags on python imports with `noqa: F401`
2. `arc f` to reformat with required formatters (can't land without this)
`nolint` disables all linting in the file, and shouldn't be used for these cases as it hides lots of genuine issues unrelated to the import.
NOTE: generated with `
fbgr -g '**/*.py' 'import .*#.*nolint' -ls | xargs sed -i 's/\(import .*#.*\)nolint/\1noqa: F401/g'
`
Reviewed By: itamaro
Differential Revision: D67897830
fbshipit-source-id: b7037924f8fb27615ebd8f89cd216ad0ae241762
0 commit comments