Skip to content

Commit bb164cb

Browse files
committed
fix braces
1 parent c9ea0df commit bb164cb

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

pandas/io/excel/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@
267267
Rows at the end to skip (0-indexed).
268268
{storage_options}
269269
270-
dtype_backend : {'numpy_nullable', 'pyarrow'}
270+
dtype_backend : {{'numpy_nullable', 'pyarrow'}}
271271
Back-end data type applied to the resultant :class:`DataFrame`
272272
(still experimental). If not specified, the default behavior
273273
is to not use nullable data types. If specified, the behavior

pandas/io/feather_format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def read_feather(
9292
Whether to parallelize reading using multiple threads.
9393
{storage_options}
9494
95-
dtype_backend : {'numpy_nullable', 'pyarrow'}
95+
dtype_backend : {{'numpy_nullable', 'pyarrow'}}
9696
Back-end data type applied to the resultant :class:`DataFrame`
9797
(still experimental). If not specified, the default behavior
9898
is to not use nullable data types. If specified, the behavior

pandas/io/html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,7 @@ def read_html(
11311131
11321132
.. versionadded:: 1.5.0
11331133
1134-
dtype_backend : {'numpy_nullable', 'pyarrow'}
1134+
dtype_backend : {{'numpy_nullable', 'pyarrow'}}
11351135
Back-end data type applied to the resultant :class:`DataFrame`
11361136
(still experimental). If not specified, the default behavior
11371137
is to not use nullable data types. If specified, the behavior

pandas/io/json/_json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ def read_json(
649649
650650
{storage_options}
651651
652-
dtype_backend : {'numpy_nullable', 'pyarrow'}
652+
dtype_backend : {{'numpy_nullable', 'pyarrow'}}
653653
Back-end data type applied to the resultant :class:`DataFrame`
654654
(still experimental). If not specified, the default behavior
655655
is to not use nullable data types. If specified, the behavior

pandas/io/parquet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ def read_parquet(
542542
543543
.. versionadded:: 1.3.0
544544
545-
dtype_backend : {'numpy_nullable', 'pyarrow'}
545+
dtype_backend : {{'numpy_nullable', 'pyarrow'}}
546546
Back-end data type applied to the resultant :class:`DataFrame`
547547
(still experimental). If not specified, the default behavior
548548
is to not use nullable data types. If specified, the behavior

pandas/io/parsers/readers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ class _read_shared(TypedDict, Generic[HashableT], total=False):
443443
444444
{storage_options}
445445
446-
dtype_backend : {'numpy_nullable', 'pyarrow'}
446+
dtype_backend : {{'numpy_nullable', 'pyarrow'}}
447447
Back-end data type applied to the resultant :class:`DataFrame`
448448
(still experimental). If not specified, the default behavior
449449
is to not use nullable data types. If specified, the behavior

pandas/io/xml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ def read_xml(
959959
960960
{storage_options}
961961
962-
dtype_backend : {'numpy_nullable', 'pyarrow'}
962+
dtype_backend : {{'numpy_nullable', 'pyarrow'}}
963963
Back-end data type applied to the resultant :class:`DataFrame`
964964
(still experimental). If not specified, the default behavior
965965
is to not use nullable data types. If specified, the behavior

0 commit comments

Comments
 (0)