diff --git a/benchmarking/tpcds/ray_entrypoint.py b/benchmarking/tpcds/ray_entrypoint.py index 46473e7113..fe34f10eb1 100644 --- a/benchmarking/tpcds/ray_entrypoint.py +++ b/benchmarking/tpcds/ray_entrypoint.py @@ -42,14 +42,7 @@ def run( ) args = parser.parse_args() - d = Path(".") - assert d.exists() - for x in d.iterdir(): - print(f"subpath: {x}") - - tpcds_gen_folder: Path = args.tpcds_gen_folder - print(f"{tpcds_gen_folder=}") - assert tpcds_gen_folder.exists() + assert args.tpcds_gen_folder.exists() assert args.question in range(1, 100) run(args.tpcds_gen_folder, args.question, args.dry_run)