Skip to content

Commit

Permalink
CLN: remove argument and deprecation warning from internal function
Browse files Browse the repository at this point in the history
  • Loading branch information
y-p committed Dec 16, 2012
1 parent ff22980 commit 96cc68a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions pandas/core/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,14 +233,10 @@ def __init__(self, frame, buf=None, columns=None, col_space=None,
else:
self.columns = frame.columns

def _to_str_columns(self, force_unicode=None):
def _to_str_columns(self):
"""
Render a DataFrame to a list of columns (as lists of strings).
"""
import warnings
if force_unicode is not None: # pragma: no cover
warnings.warn("force_unicode is deprecated, it will have no effect",
FutureWarning)

# may include levels names also
str_index = self._get_formatted_index()
Expand Down

0 comments on commit 96cc68a

Please sign in to comment.