Commit aca5c60
refactor: simplify identity list comprehension in swaptimize
Summary:
Replace `[i for i in range(depth)]` with `list(range(depth))`. The
identity list comprehension is unnecessary since `list(range(depth))`
produces the same result more concisely.
Reviewed By: yoney
Differential Revision: D99701348
fbshipit-source-id: a6979ee4a0a35f4b95f2c4b3a5fb61c1e3a06be91 parent a001e45 commit aca5c60
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
698 | 698 | | |
699 | 699 | | |
700 | 700 | | |
701 | | - | |
| 701 | + | |
702 | 702 | | |
703 | 703 | | |
704 | 704 | | |
| |||
0 commit comments