From 27302dd5841d4b0fa4788076ad9ff2993e133409 Mon Sep 17 00:00:00 2001 From: Cody Yu Date: Fri, 4 Oct 2024 16:07:54 -0700 Subject: [PATCH] [Misc] Fix CI lint (#9085) --- benchmarks/benchmark_prefix_caching.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/benchmarks/benchmark_prefix_caching.py b/benchmarks/benchmark_prefix_caching.py index d0e5b73bb4b9..eeb43a692076 100644 --- a/benchmarks/benchmark_prefix_caching.py +++ b/benchmarks/benchmark_prefix_caching.py @@ -194,7 +194,9 @@ if __name__ == "__main__": default='128:256', help='Range of input lengths for sampling prompts,' 'specified as "min:max" (e.g., "128:256").') - parser.add_argument("--seed", type=int, default=0, + parser.add_argument("--seed", + type=int, + default=0, help='Random seed for reproducibility') args = parser.parse_args() main(args)