From 5b24195ad96b55dc950b8e4a87815e2098b01961 Mon Sep 17 00:00:00 2001
From: rjzamora <rzamora217@gmail.com>
Date: Wed, 28 Aug 2024 12:48:54 -0700
Subject: [PATCH] fix typo

---
 dask_cuda/benchmarks/remote_parquet.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dask_cuda/benchmarks/remote_parquet.py b/dask_cuda/benchmarks/remote_parquet.py
index 24b90562..45550acc 100644
--- a/dask_cuda/benchmarks/remote_parquet.py
+++ b/dask_cuda/benchmarks/remote_parquet.py
@@ -10,7 +10,6 @@
 from dask.utils import format_bytes, parse_bytes
 
 from dask_cuda.benchmarks.common import Config, execute_benchmark
-from dask_cuda.benchmarks.custom import custom_read_parquet
 from dask_cuda.benchmarks.utils import (
     parse_benchmark_args,
     print_key_value,
@@ -34,7 +33,7 @@ def read_data(
     with dask.config.set({"dataframe.backend": backend}):
         if filesystem == "arrow":
             # TODO: Warn user that blocksize and aggregate_files
-            # are ingored when `filesystem == "arrow"`
+            # are ignored when `filesystem == "arrow"`
             _blocksize = {}
             _aggregate_files = {}
         else: