Skip to content

Commit 11f3fe4

Browse files
committed
rm stray debug.
1 parent 3cbbed5 commit 11f3fe4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/core/frame.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,6 @@
109109
versionadded_melt='\n.. versionadded:: 0.20.0\n',
110110
other_melt='melt')
111111

112-
import pdb; pdb.set_trace()
113-
114112
_numeric_only_doc = """numeric_only : boolean, default None
115113
Include only float, int, boolean data. If None, will attempt to use
116114
everything, then use only numeric data
@@ -4151,7 +4149,7 @@ def unstack(self, level=-1, fill_value=None):
41514149

41524150
@Appender(_shared_docs['melt'] % _shared_doc_kwargs)
41534151
def melt(self, id_vars=None, value_vars=None, var_name=None,
4154-
value_name='value', col_level=None):
4152+
value_name='value', col_level=None):
41554153
from pandas.core.reshape import melt
41564154
return melt(self, id_vars=id_vars, value_vars=value_vars,
41574155
var_name=var_name, value_name=value_name,

0 commit comments

Comments
 (0)