File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ use clippy_lints::LintInfo;
9
9
use clippy_lints:: declared_lints:: LINTS ;
10
10
use clippy_lints:: deprecated_lints:: { DEPRECATED , DEPRECATED_VERSION , RENAMED } ;
11
11
use pulldown_cmark:: { Options , Parser , html} ;
12
- use rinja:: { Template , filters:: Safe } ;
12
+ use rinja:: Template ;
13
+ use rinja:: filters:: Safe ;
13
14
use serde:: Deserialize ;
14
15
use test_utils:: IS_RUSTC_TEST_SUITE ;
15
16
use ui_test:: custom_flags:: Flag ;
@@ -465,7 +466,11 @@ impl DiagnosticCollector {
465
466
. collect ( ) ;
466
467
metadata. sort_unstable_by ( |a, b| a. id . cmp ( & b. id ) ) ;
467
468
468
- fs:: write ( "util/gh-pages/index.html" , Renderer { lints : & metadata } . render ( ) . unwrap ( ) ) . unwrap ( ) ;
469
+ fs:: write (
470
+ "util/gh-pages/index.html" ,
471
+ Renderer { lints : & metadata } . render ( ) . unwrap ( ) ,
472
+ )
473
+ . unwrap ( ) ;
469
474
} ) ;
470
475
471
476
( Self { sender } , handle)
You can’t perform that action at this time.
0 commit comments