File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class Call(ir.Statement):
6161 # not a fixed type here so just any
6262 callee : ir .SSAValue = info .argument ()
6363 inputs : tuple [ir .SSAValue , ...] = info .argument ()
64- kwargs : tuple [str , ...] = info .attribute (default_factory = lambda : ())
64+ kwargs : tuple [str , ...] = info .attribute (default = ())
6565 result : ir .ResultValue = info .result ()
6666 purity : bool = info .attribute (default = False )
6767
@@ -214,7 +214,7 @@ class Invoke(ir.Statement):
214214 traits = frozenset ({ir .MaybePure ()})
215215 callee : ir .Method = info .attribute ()
216216 inputs : tuple [ir .SSAValue , ...] = info .argument ()
217- kwargs : tuple [str , ...] = info .attribute ()
217+ kwargs : tuple [str , ...] = info .attribute (default = () )
218218 result : ir .ResultValue = info .result ()
219219 purity : bool = info .attribute (default = False )
220220
You can’t perform that action at this time.
0 commit comments