Skip to content

Commit 70fb351

Browse files
committed
once again, making the linter happy
1 parent 5ea1200 commit 70fb351

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

compiler/src/transform/expand-generics.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -294,12 +294,12 @@ export function expandGenerics (inputModel: Model, config?: ExpansionConfig): Mo
294294
const result = { ...resp }
295295
result.body = expandBody(resp.body, genericParamMapping(resp.generics, params))
296296
if (resp.exceptions != null) {
297-
result.exceptions = [];
297+
result.exceptions = []
298298
for (const exception of resp.exceptions) {
299299
const except: ResponseException = {
300-
description: exception.description,
301-
statusCodes: exception.statusCodes,
302-
body: expandBody(exception.body, genericParamMapping(resp.generics, params))
300+
description: exception.description,
301+
statusCodes: exception.statusCodes,
302+
body: expandBody(exception.body, genericParamMapping(resp.generics, params))
303303
}
304304
result.exceptions.push(except)
305305
}

0 commit comments

Comments
 (0)