Skip to content

Commit 8701bba

Browse files
committed
DEPR: deprecate get_ftype_counts (GH18243)
PEP8 style fix
1 parent 3beb122 commit 8701bba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/series/test_dtypes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_dtype(self):
6464
assert self.ts.ftypes == 'float64:dense'
6565
tm.assert_series_equal(self.ts.get_dtype_counts(),
6666
Series(1, ['float64']))
67-
#GH18243 - Assert .get_ftype_counts is deprecated
67+
# GH18243 - Assert .get_ftype_counts is deprecated
6868
with tm.assert_produces_warning(FutureWarning):
6969
tm.assert_series_equal(self.ts.get_ftype_counts(),
7070
Series(1, ['float64:dense']))

0 commit comments

Comments
 (0)