Skip to content

Commit 6b90685

Browse files
committed
upd-deps-2025.05.25 fmt
1 parent ade0ddb commit 6b90685

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/repo-manager/manager.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ func (m *Manager) GetAuthors() ([]Author, error) {
263263
}
264264

265265
authorMap := make(map[string]*Author)
266-
266+
267267
err = commitIter.ForEach(func(c *object.Commit) error {
268268
email := c.Author.Email
269269
if _, exists := authorMap[email]; !exists {
@@ -274,12 +274,12 @@ func (m *Manager) GetAuthors() ([]Author, error) {
274274
}
275275
}
276276
authorMap[email].Count++
277-
277+
278278
// Update name if it's different (use the most recent name)
279279
if authorMap[email].Name != c.Author.Name && c.Author.When.After(c.Committer.When) {
280280
authorMap[email].Name = c.Author.Name
281281
}
282-
282+
283283
return nil
284284
})
285285
if err != nil {

0 commit comments

Comments
 (0)