Skip to content

Commit a06a85f

Browse files
committed
Update AwsRstDocFileGenerator.java
1 parent 51364b6 commit a06a85f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codegen/aws/core/src/main/java/software/amazon/smithy/python/aws/codegen/AwsRstDocFileGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public void append(PythonWriter pythonWriter, StructureSection section) {
123123
boolean isStreaming = Optional.ofNullable(shape.getAllMembers().get("body"))
124124
.map(member -> context.model().expectShape(member.getTarget()))
125125
.map(memberShape -> memberShape.hasTrait(StreamingTrait.class))
126-
.orElse(false); // Input and output shapes are typically skipped since they are generated
126+
.orElse(false);
127127
// Input and output shapes are typically skipped since they are generated
128128
// on the operation's page. The exception to this is the output of
129129
// streaming operations where we have a different output shape defined.

0 commit comments

Comments
 (0)