Skip to content

Commit 6e7edaf

Browse files
Update __init__.py
DOC: Wrap long comment lines to fix E501 error
1 parent e61e32a commit 6e7edaf

File tree

1 file changed

+26
-7
lines changed

1 file changed

+26
-7
lines changed

pandas/arrays/__init__.py

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,37 @@
77
# Explanations for the ExtensionArrays listed below:
88
#
99
# ArrowExtensionArray: Wraps an Apache Arrow array for high-performance data handling.
10+
#
1011
# ArrowStringArray: A specific version for string data backed by Apache Arrow.
11-
# BooleanArray: Stores boolean data (True, False) but with the ability to hold missing values (NA).
12-
# Categorical: For data that belongs to a fixed, finite set of categories. Very memory efficient.
12+
#
13+
# BooleanArray: Stores boolean data (True, False) but with the
14+
# ability to hold missing values (NA).
15+
#
16+
# Categorical: For data that belongs to a fixed, finite set of
17+
# categories. Very memory efficient.
18+
#
1319
# DatetimeArray: Handles timezone-aware or timezone-naive date and time data.
14-
# FloatingArray: For floating-point (decimal) numbers, with support for missing values.
20+
#
21+
# FloatingArray: For floating-point (decimal) numbers, with support
22+
# for missing values.
23+
#
1524
# IntegerArray: For integer (whole) numbers, with support for missing values.
25+
#
1626
# IntervalArray: Stores data representing intervals or ranges (e.g., 1-5, 6-10).
17-
# NumpyExtensionArray: A wrapper around a standard NumPy array, for compatibility within the extension system.
18-
# PeriodArray: For data representing regular time periods (e.g., months, quarters, years).
27+
#
28+
# NumpyExtensionArray: A wrapper around a standard NumPy array, for compatibility
29+
# within the extension system.
30+
#
31+
# PeriodArray: For data representing regular time periods (e.g., months,
32+
# quarters, years).
33+
#
1934
# SparseArray: Memory-efficient array for data that is mostly zero or NA.
20-
# StringArray: Dedicated array for handling string data, with support for missing values.
21-
# TimedeltaArray: For data representing durations or differences in time (e.g., 2 days, 5 hours).
35+
#
36+
# StringArray: Dedicated array for handling string data, with support
37+
# for missing values.
38+
#
39+
# TimedeltaArray: For data representing durations or differences in time
40+
# (e.g., 2 days, 5 hours).
2241

2342
from pandas.core.arrays import (
2443
ArrowExtensionArray,

0 commit comments

Comments
 (0)