rust-clippy icon indicating copy to clipboard operation
rust-clippy copied to clipboard

Remove braces for import only self

Open A4-Tacks opened this issue 1 year ago • 0 comments

What it does

Simplify the code

Advantage

  • Remove unnecessary braces

Drawbacks

No response

Example

use std::iter::{self};

Could be written as:

use std::iter;

A4-Tacks avatar Aug 26 '24 14:08 A4-Tacks