Skip to content

Commit 30b3b72

Browse files
committed
lint
1 parent 9e35b4c commit 30b3b72

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

http/src/main/scala/org/broadinstitute/dsde/workbench/leonardo/http/service/LeoAppServiceInterp.scala

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -714,11 +714,9 @@ final class LeoAppServiceInterp[F[_]: Parallel](config: AppServiceConfig,
714714
)
715715
} yield ()
716716

717-
override def updateApp(userInfo: UserInfo,
718-
cloudContext: CloudContext.Gcp,
719-
appName: AppName,
720-
req: UpdateAppRequest
721-
)(implicit as: Ask[F, AppContext]): F[Unit] =
717+
override def updateApp(userInfo: UserInfo, cloudContext: CloudContext.Gcp, appName: AppName, req: UpdateAppRequest)(
718+
implicit as: Ask[F, AppContext]
719+
): F[Unit] =
722720
for {
723721
ctx <- as.ask
724722

http/src/test/scala/org/broadinstitute/dsde/workbench/leonardo/http/service/MockAppService.scala

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,9 @@ class MockAppService extends AppService[IO] {
8080
): IO[Unit] =
8181
IO.unit
8282

83-
override def updateApp(userInfo: UserInfo,
84-
cloudContext: CloudContext.Gcp,
85-
appName: AppName,
86-
req: UpdateAppRequest
87-
)(implicit as: Ask[IO, AppContext]): IO[Unit] = IO.unit
83+
override def updateApp(userInfo: UserInfo, cloudContext: CloudContext.Gcp, appName: AppName, req: UpdateAppRequest)(
84+
implicit as: Ask[IO, AppContext]
85+
): IO[Unit] = IO.unit
8886
}
8987

9088
object MockAppService extends MockAppService

0 commit comments

Comments
 (0)