Skip to content

Commit 1865f7d

Browse files
committed
bin/scratch: Fix mypy type
Follow-up to #31410 Noticed by Jan in https://materializeinc.slack.com/archives/CM7ATT65S/p1739439309198359
1 parent d12fc55 commit 1865f7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

misc/python/materialize/scratch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
FilterTypeDef,
2828
InstanceNetworkInterfaceSpecificationTypeDef,
2929
InstanceTypeDef,
30-
RunInstancesRequestRequestTypeDef,
30+
RunInstancesRequestServiceResourceCreateInstancesTypeDef,
3131
)
3232
from prettytable import PrettyTable
3333
from pydantic import BaseModel
@@ -179,7 +179,7 @@ def launch(
179179
say(f"launching instance {display_name or '(unnamed)'}")
180180
with open(MZ_ROOT / "misc" / "scratch" / "provision.bash") as f:
181181
provisioning_script = f.read()
182-
kwargs: RunInstancesRequestRequestTypeDef = {
182+
kwargs: RunInstancesRequestServiceResourceCreateInstancesTypeDef = {
183183
"MinCount": 1,
184184
"MaxCount": 1,
185185
"ImageId": ami,

0 commit comments

Comments
 (0)