Skip to content

Commit 9844c13

Browse files
committed
lint fix
1 parent 3d995c9 commit 9844c13

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

lambdas/api-handler/src/handlers/get-mi.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import { assertNotEmpty } from "../utils/validation";
1010
import { extractCommonIds } from "../utils/common-ids";
1111
import { Deps } from "../config/deps";
1212

13-
export default function createGetMIHandler(
14-
deps: Deps,
13+
export default function createGetMIHandler(deps: Deps
1514
): APIGatewayProxyHandler {
1615
return async (event) => {
1716
const commonIds = extractCommonIds(
@@ -37,11 +36,7 @@ export default function createGetMIHandler(
3736
),
3837
);
3938

40-
const result = await getMIOperation(
41-
miId,
42-
supplierId,
43-
deps.miRepo,
44-
);
39+
const result = await getMIOperation(miId, supplierId, deps.miRepo);
4540

4641
deps.logger.info({
4742
description: "Retrieved management information",

0 commit comments

Comments
 (0)