Opened this issue a year ago · 0 comments
I propose to add a trick that will suggest either removing the variable completely, or replacing it with _ . Example (var b used, other - no) -> (int a, int b, int c) = load_data() -> (_, int b, _) = load_data()
(int a, int b, int c) = load_data()
(_, int b, _) = load_data()