Skip to content

Commit 23d0428

Browse files
authored
Remove stray #
1 parent 79e3e8e commit 23d0428

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/progpy/sim_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def frame(self) -> pd.DataFrame:
6868
pd.DataFrame: A pandas DataFrame representing the SimResult data
6969
"""
7070
# warn_once('frame will be deprecated after version 1.5 of ProgPy.', DeprecationWarning, stacklevel=2)
71-
if len(self.data) > 0: #
71+
if len(self.data) > 0:
7272
frame = pd.concat([
7373
pd.DataFrame(dict(dframe), index=[0]) for dframe in self.data
7474
], ignore_index=True, axis=0)

0 commit comments

Comments
 (0)