Skip to content

Commit ad44eef

Browse files
Don't use typing.Dict
I blame Copilot. :-) Co-authored-by: Brandt Bucher <[email protected]>
1 parent 896a8eb commit ad44eef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tools/cases_generator/generate_cases.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ def write_body(self, out: Formatter, dedent: int, cache_adjust: int = 0) -> None
213213
@dataclasses.dataclass
214214
class Component:
215215
instr: Instruction
216-
input_mapping: typing.Dict[str, parser.StackEffect]
217-
output_mapping: typing.Dict[str, parser.StackEffect]
216+
input_mapping: dict[str, parser.StackEffect]
217+
output_mapping: dict[str, parser.StackEffect]
218218

219219
def write_body(self, out: Formatter, cache_adjust: int) -> None:
220220
with out.block(""):

0 commit comments

Comments
 (0)