Skip to content

Commit cd0e96e

Browse files
committed
make them positional
1 parent 66b7556 commit cd0e96e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler_opt/rl/inlining/inlining_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ class InliningRunner(compilation_runner.CompilationRunner):
4040
"""
4141

4242
def __init__(self,
43+
*,
4344
llvm_size_path: str,
4445
ir2vec_vocab_path: str | None = None,
45-
*args,
4646
**kwargs):
47-
super().__init__(*args, **kwargs)
47+
super().__init__(**kwargs)
4848
self._llvm_size_path = llvm_size_path
4949
self._ir2vec_vocab_path = ir2vec_vocab_path
5050

0 commit comments

Comments
 (0)