diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-09-26 11:18:08 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-09-26 11:18:08 +0800 |
| commit | 9c44621f13f27e7f2a82fa5ab2fc8e27381f3e39 (patch) | |
| tree | d71490fc662508674a2927e9558bc89e91e070b6 /crates/vcs/src/data/sheet.rs | |
| parent | dfaff711cd1cc5d500599a3146891f72f6903c45 (diff) | |
Fixed by clippy
Diffstat (limited to 'crates/vcs/src/data/sheet.rs')
| -rw-r--r-- | crates/vcs/src/data/sheet.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/vcs/src/data/sheet.rs b/crates/vcs/src/data/sheet.rs index 17a0981..edf307a 100644 --- a/crates/vcs/src/data/sheet.rs +++ b/crates/vcs/src/data/sheet.rs @@ -102,7 +102,7 @@ impl<'a> Sheet<'a> { /// Because I don't want a second instance of the sheet to be kept in memory. /// If needed, please deserialize and reload it. pub async fn persist(self) -> Result<(), std::io::Error> { - SheetData::write_to(&self.data, &self.sheet_path()).await + SheetData::write_to(&self.data, self.sheet_path()).await } /// Get the path to the sheet file |
