Skip to content

Commit

Permalink
fix(python-runtime): KernelResponse missing types (#1332)
Browse files Browse the repository at this point in the history
Adds `BeginResponse` and `SetResponse` to `KernelResponse` union type in
python-runtime. This fixes python-runtime test failures.
  • Loading branch information
MrArnoldPalmer authored and RomainMuller committed Apr 20, 2020
1 parent df55f5e commit 1347c14
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/@jsii/python-runtime/src/jsii/_kernel/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,13 @@ class StatsResponse:
]

KernelResponse = Union[
BeginResponse,
LoadResponse,
CreateResponse,
DeleteResponse,
GetResponse,
InvokeResponse,
SetResponse,
StatsResponse,
Callback,
]
Expand Down

0 comments on commit 1347c14

Please sign in to comment.