Skip to content

Commit e115490

Browse files
authored
fix sytax errors with multiple auth types (#546)
1 parent 11872ef commit e115490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codegen/core/src/main/java/software/amazon/smithy/python/codegen/generators/OperationGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ private void writeAuthSchemes(PythonWriter writer) {
9393
}
9494

9595
for (var authSchemeId : authSchemes.keySet()) {
96-
writer.write("ShapeID($S)", authSchemeId);
96+
writer.write("ShapeID($S),", authSchemeId);
9797
}
9898

9999
}

0 commit comments

Comments
 (0)