Skip to content

Commit

Permalink
✅[CHORE] : SwiftLint rule에 맞게 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
noah0316 committed Dec 24, 2021
1 parent bbd95c0 commit cb31b53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@
import UIKit

extension UIViewController {
func makeAlert(title: String,
message: String,
okAction: ((UIAlertAction) -> Void)? = nil,
completion: (() -> Void)? = nil) {
func makeAlert(title: String, message: String, okAction: ((UIAlertAction) -> Void)? = nil, completion: (() -> Void)? = nil) {
let generator = UIImpactFeedbackGenerator(style: .medium)
generator.impactOccurred()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ struct UserSignService {
static let shared = UserSignService()
private init() {}

func requestSignService(userEmail: String, userPw: String, userName: String? = nil, requestType: APIConstants.RequestType, completion: @escaping (Result<AuthResponse, NetworkError<AuthResponse>>) -> (Void)) {
func requestSignService(userEmail: String, userPw: String, userName: String? = nil, requestType: APIConstants.RequestType, completion: @escaping (Result<AuthResponse, NetworkError<AuthResponse>>) -> Void) {
let session = makeUrlSession()
let requestData: Data?
var urlRequest: URLRequest?
Expand Down

0 comments on commit cb31b53

Please sign in to comment.