Skip to content

Commit 0692ef4

Browse files
authored
Pyre fix
Differential Revision: D66034848 Pull Request resolved: #6913
1 parent ca44965 commit 0692ef4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/models/llama/runner/eager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def build_args_parser() -> argparse.ArgumentParser:
8080
def execute_runner(runner_class: Type[LlamaRunner]) -> None:
8181
parser = build_args_parser()
8282
args = parser.parse_args()
83-
runner = runner_class(args)
83+
runner = runner_class(args) # pyre-ignore: Missing argument [20]
8484
generated_tokens = (
8585
runner.chat_completion(temperature=args.temperature)
8686
if args.chat

0 commit comments

Comments
 (0)