Skip to content

Commit 72f7e04

Browse files
committed
code format
1 parent edc0183 commit 72f7e04

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scala-libraries-fp/src/test/scala/com/baeldung/scala/cats/eithert/EitherTErrorHandling.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@ object EitherTErrorHandling {
7272
user: User
7373
): Future[Either[String, String]] = ???
7474

75-
def performAction(userId: String, itemId: String): Future[Either[String, String]] = {
75+
def performAction(
76+
userId: String,
77+
itemId: String
78+
): Future[Either[String, String]] = {
7679
(for {
7780
user <- EitherT(getUserProfile(userId))
7881
discount <- EitherT(calculateDiscount(user))

0 commit comments

Comments
 (0)