Skip to content

Commit

Permalink
[Chore] Team-Sopetit#117 - swiftLint 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
ahra1221 committed Jan 31, 2024
1 parent 1be7514 commit 82f4949
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,3 @@ extension UpdateAlertView {
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -284,11 +284,9 @@ extension DailyRoutineViewController: RadioButtonDelegate {
}

func unselectRadioButton(index: Int) {
for i in 0 ..< selectedList.count {
if dailyRoutineEntity.routines[index].routineID == selectedList[i] {
selectedList.remove(at: i)
break
}
for i in 0 ..< selectedList.count where dailyRoutineEntity.routines[index].routineID == selectedList[i] {
selectedList.remove(at: i)
break
}
updateDeleteCount()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private extension HappyRoutineEmptyView {
deleteAlertView.isHidden = false
UIView.animate(withDuration: 0.5, delay: 0.7, options: .curveEaseOut, animations: {
self.deleteAlertView.alpha = 0.0
}, completion: {_ in
}, completion: { _ in
self.deleteAlertView.isHidden = true
self.deleteAlertView.alpha = 1.0
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,3 @@ private extension SplashViewController {
}
}
}

0 comments on commit 82f4949

Please sign in to comment.