Skip to content

Commit 1b200e6

Browse files
committed
fixing formatting for quoting
1 parent 3467ecc commit 1b200e6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pandas/io/parsers/readers.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,7 @@ class _read_shared(TypedDict, Generic[HashableT], total=False):
353353
quotechar : str (length 1), optional
354354
Character used to denote the start and end of a quoted item. Quoted
355355
items can include the ``delimiter`` and it will be ignored.
356-
quoting : {{0 or csv.QUOTE_MINIMAL, 1 or csv.QUOTE_ALL, 2 or csv.QUOTE_NONNUMERIC,
357-
3 or csv.QUOTE_NONE}}, default csv.QUOTE_MINIMAL
356+
quoting : {{0 or csv.QUOTE_MINIMAL, 1 or csv.QUOTE_ALL, 2 or csv.QUOTE_NONNUMERIC, 3 or csv.QUOTE_NONE}}, default csv.QUOTE_MINIMAL
358357
Control field quoting behavior per ``csv.QUOTE_*`` constants. Default is
359358
``csv.QUOTE_MINIMAL`` (i.e., 0) which implies that only fields containing special
360359
characters are quoted (e.g., characters defined in ``quotechar``, ``delimiter``,
@@ -540,7 +539,7 @@ class _read_shared(TypedDict, Generic[HashableT], total=False):
540539
col 2 datetime64[ns]
541540
col 3 datetime64[ns]
542541
dtype: object
543-
"""
542+
""" # noqa: E501
544543

545544

546545
class _C_Parser_Defaults(TypedDict):

0 commit comments

Comments
 (0)