We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d1df30 commit cd80084Copy full SHA for cd80084
src/file_data.rs
@@ -38,7 +38,8 @@ impl DataSource for FileDataSource {
38
}
39
fn fetch_info(&self) -> DataSourceInfo {
40
let path = self.basedir.join("info");
41
- self.read_file::<DataSourceInfo>(&path).expect("fetch_info failed")
+ self.read_file::<DataSourceInfo>(&path)
42
+ .expect("fetch_info failed")
43
44
45
fn fetch_summary_tile(
0 commit comments