Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
iscai-msft committed Feb 23, 2024
1 parent 2b4165a commit 4843f80
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/typespec-client-generator-core/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,11 @@ function updateModelsMap(context: SdkContext, type: Type, sdkType: SdkType, oper
}
if (sdkType.additionalProperties) {
updateModelsMap(
context, sdkType.additionalProperties.__raw as any, sdkType.additionalProperties, operation);
context,
sdkType.additionalProperties.__raw as any,
sdkType.additionalProperties,
operation
);
}
if (sdkType.discriminatedSubtypes) {
for (const subtype of Object.values(sdkType.discriminatedSubtypes)) {
Expand Down

0 comments on commit 4843f80

Please sign in to comment.