Commit 908bc6d
dead-code: remove unused enumerate index in emit_import_fixed_modules
Summary:
In StrictCodeGenBase.emit_import_fixed_modules(), the loop used
`for _i, name in enumerate(node.names)` but the index `_i` was
never used. Simplified to `for name in node.names`.
Reviewed By: mpage
Differential Revision: D97966076
fbshipit-source-id: 515f2dae58eff0d41e22e2e2dcc5b4f0d332402e1 parent b69be6f commit 908bc6d
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
383 | 383 | | |
384 | 384 | | |
385 | 385 | | |
386 | | - | |
| 386 | + | |
387 | 387 | | |
388 | 388 | | |
389 | 389 | | |
| |||
0 commit comments