Skip to content

Commit

Permalink
can't use total_data_rows on dataframe (#1473)
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume authored Dec 16, 2022
1 parent 894df7e commit 46248bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpcontribs-client/mpcontribs/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def info(self) -> Type[Dict]:
"""Show summary info for table"""
info = Dict((k, v) for k, v in self.attrs.items())
info["columns"] = ", ".join(self.columns)
info["nrows"] = len(self.total_data_rows)
info["nrows"] = len(self.index)
return info


Expand Down

0 comments on commit 46248bb

Please sign in to comment.