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)