Revert "fix py-fuzzer test failure"

This reverts commit b9ecab1f24.
This commit is contained in:
Douglas Creager 2025-12-15 12:26:33 -05:00
parent 2897d498fd
commit 06a02fc46e
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ def absolute_path(p: str) -> Path:
def parse_seed_argument(arg: str) -> int | range: def parse_seed_argument(arg: str) -> int | range:
"""Helper for argument parsing""" """Helper for argument parsing"""
if "-" in arg: if "-" in arg:
start, end = map(int, arg.split("-")) # ty: ignore start, end = map(int, arg.split("-"))
if end <= start: if end <= start:
raise argparse.ArgumentTypeError( raise argparse.ArgumentTypeError(
f"Error when parsing seed argument {arg!r}: " f"Error when parsing seed argument {arg!r}: "