Skip to content

Commit fad5b75

Browse files
committed
style: no need format!
1 parent 89bef45 commit fad5b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ fn get_repo(path: &Path) -> Result<Repo> {
167167
Default::default(),
168168
git_open_opts_map,
169169
)
170-
.context(format!("Failed to find git repo"))?;
170+
.context("Failed to find git repo")?;
171171

172172
let repository = shared_repo.to_thread_local();
173173
let branch = get_current_branch(&repository);

0 commit comments

Comments
 (0)