diff --git a/pandas/errors/__init__.py b/pandas/errors/__init__.py index 16654f0227182..ff34df64c88d2 100644 --- a/pandas/errors/__init__.py +++ b/pandas/errors/__init__.py @@ -68,8 +68,7 @@ class DtypeWarning(Warning): ... 'b': ['b'] * 300000}) >>> df.to_csv('test.csv', index=False) >>> df2 = pd.read_csv('test.csv') - - DtypeWarning: Columns (0) have mixed types + ... # DtypeWarning: Columns (0) have mixed types Important to notice that ``df2`` will contain both `str` and `int` for the same input, '1'.