From 80388ac9bd5efa98efbadc352c8d9ad6992d8c47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kami=C5=84ski?= Date: Wed, 23 Oct 2024 15:15:53 +0200 Subject: [PATCH] fmt --- scripts/data/client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/data/client.py b/scripts/data/client.py index 7499126c..e20c851d 100755 --- a/scripts/data/client.py +++ b/scripts/data/client.py @@ -263,16 +263,16 @@ def main(start, blocks, step, mode, strategy): choices=["sequential", "random"], help="Processing strategy", ) - + parser.add_argument( "--maxweight", type=int, default=MAX_WEIGHT_LIMIT, help="Max weight limit" ) - + parser.add_argument("--verbose", action="store_true", help="Verbose") args = parser.parse_args() - MAX_WEIGHT_LIMIT=args.maxweight + MAX_WEIGHT_LIMIT = args.maxweight file_handler = logging.FileHandler("client.errors.log") file_handler.setLevel(logging.INFO)