From 895694c624aac9b63392841e915965a10b5592b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=82=E3=81=8F?= Date: Thu, 28 Dec 2023 19:15:07 +0900 Subject: [PATCH] Scripts: fix incorrect handling of storage stress test count option (#3321) --- scripts/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/storage.py b/scripts/storage.py index e04eaa7e..9df2f6c3 100755 --- a/scripts/storage.py +++ b/scripts/storage.py @@ -74,7 +74,7 @@ class Main(App): self.parser_list.set_defaults(func=self.list) self.parser_stress = self.subparsers.add_parser("stress", help="Stress test") - self.parser.add_argument( + self.parser_stress.add_argument( "-c", "--count", type=int, default=10, help="Iteration count" ) self.parser_stress.add_argument("flipper_path", help="Flipper path")