Skip to content

Commit

Permalink
chore(nit): Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Apr 28, 2024
1 parent 0dc575f commit d18b6da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agate/table/from_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d18b6da

Please sign in to comment.