We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79e3e8e commit 23d0428Copy full SHA for 23d0428
src/progpy/sim_result.py
@@ -68,7 +68,7 @@ def frame(self) -> pd.DataFrame:
68
pd.DataFrame: A pandas DataFrame representing the SimResult data
69
"""
70
# warn_once('frame will be deprecated after version 1.5 of ProgPy.', DeprecationWarning, stacklevel=2)
71
- if len(self.data) > 0: #
+ if len(self.data) > 0:
72
frame = pd.concat([
73
pd.DataFrame(dict(dframe), index=[0]) for dframe in self.data
74
], ignore_index=True, axis=0)
0 commit comments