From d18b6dae039130848f6cf9e352c417db6aa940da Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Sun, 28 Apr 2024 16:47:36 -0400 Subject: [PATCH] chore(nit): Fix typo --- agate/table/from_csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agate/table/from_csv.py b/agate/table/from_csv.py index b20f2aa..b979771 100644 --- a/agate/table/from_csv.py +++ b/agate/table/from_csv.py @@ -63,7 +63,7 @@ def from_csv(cls, path, column_names=None, column_types=None, row_names=None, sk handle = f if sniff_limit is None: - # Reads to the end of the tile, but avoid reading the file twice. + # Reads to the end of the file, but avoid reading the file twice. handle = io.StringIO(f.read()) sample = handle.getvalue() elif sniff_limit > 0: