Skip to content

Commit dcad915

Browse files
committed
bug fix
1 parent 644d74b commit dcad915

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/io/parsers/readers.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,6 @@ class _read_shared(TypedDict, Generic[HashableT], total=False):
272272
Additional strings to recognize as ``NA``/``NaN``. If ``dict`` passed, specific
273273
per-column ``NA`` values. By default the following values are interpreted as
274274
``NaN``: "{na_values_str}".
275-
276275
keep_default_na : bool, default True
277276
Whether or not to include the default ``NaN`` values when parsing the data.
278277
Depending on whether ``na_values`` is passed in, the behavior is as follows:
@@ -354,7 +353,7 @@ class _read_shared(TypedDict, Generic[HashableT], total=False):
354353
quotechar : str (length 1), optional
355354
Character used to denote the start and end of a quoted item. Quoted
356355
items can include the ``delimiter`` and it will be ignored.
357-
quoting : {{0 or csv.QUOTE_MINIMAL, 1 or csv.QUOTE_ALL, 2 or csv.QUOTE_NONNUMERIC, \
356+
quoting : {{0 or csv.QUOTE_MINIMAL, 1 or csv.QUOTE_ALL, 2 or csv.QUOTE_NONNUMERIC,
358357
3 or csv.QUOTE_NONE}}, default csv.QUOTE_MINIMAL
359358
Control field quoting behavior per ``csv.QUOTE_*`` constants. Default is
360359
``csv.QUOTE_MINIMAL`` (i.e., 0) which implies that only fields containing special

0 commit comments

Comments
 (0)