Skip to content

Commit b4052a2

Browse files
committed
Fix pep8
1 parent 2b3afa5 commit b4052a2

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

pandas/__init__.py

+14-14
Original file line numberDiff line numberDiff line change
@@ -45,30 +45,30 @@
4545
import pandas.core.config_init
4646

4747
from pandas.core.api import (
48-
#dtype
48+
# dtype
4949
Int8Dtype, Int16Dtype, Int32Dtype, Int64Dtype, UInt8Dtype,
5050
UInt16Dtype, UInt32Dtype, UInt64Dtype, CategoricalDtype,
5151
PeriodDtype, IntervalDtype, DatetimeTZDtype,
5252

53-
#missing
53+
# missing
5454
isna, isnull, notna, notnull,
5555

56-
#indexes
56+
# indexes
5757
Index, CategoricalIndex, Int64Index, UInt64Index, RangeIndex,
5858
Float64Index, MultiIndex, IntervalIndex, TimedeltaIndex,
5959
DatetimeIndex, PeriodIndex, IndexSlice,
6060

61-
#tseries
61+
# tseries
6262
NaT, Period, period_range, Timedelta, timedelta_range,
6363
Timestamp, date_range, bdate_range, Interval, interval_range,
6464
DateOffset,
6565

66-
#conversion
66+
# conversion
6767
to_numeric, to_datetime, to_timedelta,
6868

69-
#misc
69+
# misc
7070
np, TimeGrouper, Grouper, factorize, unique, value_counts,
71-
array, Categorical, set_eng_float_format, Series, DataFrame,
71+
array, Categorical, set_eng_float_format, Series, DataFrame,
7272
Panel)
7373

7474
from pandas.core.sparse.api import (
@@ -87,26 +87,26 @@
8787
from pandas.util._print_versions import show_versions
8888

8989
from pandas.io.api import (
90-
#excel
90+
# excel
9191
ExcelFile, ExcelWriter, read_excel,
9292

93-
#packers
93+
# packers
9494
read_msgpack, to_msgpack,
9595

96-
#parsers
96+
# parsers
9797
read_csv, read_fwf, read_table,
9898

99-
#pickle
99+
# pickle
100100
read_pickle, to_pickle,
101101

102-
#pytables
102+
# pytables
103103
HDFStore, read_hdf,
104104

105-
#sql
105+
# sql
106106
read_sql, read_sql_query,
107107
read_sql_table,
108108

109-
#misc
109+
# misc
110110
read_clipboard, read_parquet, read_feather, read_gbq,
111111
read_html, read_json, read_stata, read_sas)
112112

0 commit comments

Comments
 (0)