Skip to content

Commit f09ee30

Browse files
committed
fix: correct lint issues
1 parent cce9bc0 commit f09ee30

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

internal/infra/repository/studentmem/student.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ func (r *Repository) Add(_ context.Context, model model.Student) error {
3838
return nil
3939
}
4040

41-
// nolint: cyclop
42-
func (r *Repository) Get(_ context.Context, cmd studentrepo.GetCommand) []model.Student {
41+
func (r *Repository) Get(_ context.Context, cmd studentrepo.GetCommand) []model.Student { // nolint: cyclop
4342
r.lock.RLock()
4443
defer r.lock.RUnlock()
4544

0 commit comments

Comments
 (0)