We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb012c0 commit 8000e36Copy full SHA for 8000e36
codegen/core/src/main/java/software/amazon/smithy/python/codegen/ClientGenerator.java
@@ -221,6 +221,7 @@ raise ExpectationNotMetError("protocol and transport MUST be set on the config t
221
222
private void generateEventStreamOperation(PythonWriter writer, OperationShape operation) {
223
writer.pushState(new OperationSection(service, operation));
224
+ writer.addStdlibImport("copy", "deepcopy");
225
writer.addDependency(SmithyPythonDependency.SMITHY_CORE);
226
writer.addDependency(SmithyPythonDependency.SMITHY_AWS_CORE.withOptionalDependencies("eventstream"));
227
var operationSymbol = symbolProvider.toSymbol(operation);
0 commit comments