1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 11:22:30 +01:00

Run 'cargo fmt'

This commit is contained in:
sharkdp
2020-04-24 16:09:56 +02:00
committed by David Peter
parent 81488adf8b
commit 8e18786556
5 changed files with 11 additions and 7 deletions

View File

@@ -53,5 +53,6 @@ pub fn assets_from_cache_or_binary() -> Result<HighlightingAssets> {
}
}
Ok(HighlightingAssets::from_cache(&cache_dir).unwrap_or_else(|_| HighlightingAssets::from_binary()))
Ok(HighlightingAssets::from_cache(&cache_dir)
.unwrap_or_else(|_| HighlightingAssets::from_binary()))
}