Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Jul 7, 2017
1 parent c16b16f commit dbb3781
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jsonextended/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"""

__version__ = '0.3.2'
__version__ = '0.3.3'

from jsonextended import ejson, units, utils, edict, plugins

Expand Down
2 changes: 1 addition & 1 deletion jsonextended/edict.py
Original file line number Diff line number Diff line change
Expand Up @@ -1316,4 +1316,4 @@ def to_dict(self):
def to_df(self, **kwargs):
""" return D.to_df -> D as pandas.DataFrame """
import pandas as pd
pd.DataFrame(self._recurse_children(self), **kwargs)
return pd.DataFrame(self._recurse_children(self), **kwargs)

0 comments on commit dbb3781

Please # to comment.