Skip to content

Commit

Permalink
Use JSONCodec for json pyaload serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
JordonPhillips committed Jul 16, 2024
1 parent 58af7ce commit 62f450b
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 627 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@ public final class SmithyPythonDependency {
List.of("aiohttp")
);

/**
* The core smithy-json python package.
*/
public static final PythonDependency SMITHY_JSON = new PythonDependency(
"smithy_json",
"==0.0.1",
Type.DEPENDENCY,
false
);

/**
* testing framework used in generated functional tests.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private void generateSerializer() {
for e in value:
${?sparse}
if e is None:
serializer.write_null(member_schema)
ls.write_null(member_schema)
else:
${3C|}
${/sparse}
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 62f450b

Please sign in to comment.