Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejka committed Oct 23, 2024
1 parent 08d4a76 commit 80388ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/data/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 80388ac

Please sign in to comment.