Skip to content

Commit 59b291b

Browse files
Fix lint issue
1 parent dd34e9f commit 59b291b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

WooCommerce/Classes/Authentication/WPComLogin/WPComEmailLoginViewModel.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ import struct WordPressKit.WordPressComRestApiEndpointError
88
/// A protocol used to mock `WordPressComAccountService` for unit tests.
99
protocol WordPressComAccountServiceProtocol {
1010
func isPasswordlessAccount(username: String, success: @escaping (Bool) -> Void, failure: @escaping (Error) -> Void)
11-
func requestAuthenticationLink(for email: String, jetpackLogin: Bool, createAccountIfNotFound: Bool, success: @escaping () -> Void, failure: @escaping (Error) -> Void)
11+
func requestAuthenticationLink(for email: String,
12+
jetpackLogin: Bool,
13+
createAccountIfNotFound: Bool,
14+
success: @escaping () -> Void,
15+
failure: @escaping (Error) -> Void)
1216
}
1317

1418
/// Conformance

0 commit comments

Comments
 (0)