Skip to content

Commit

Permalink
Add missing base column
Browse files Browse the repository at this point in the history
  • Loading branch information
fwitte committed Jan 14, 2022
1 parent 5d132af commit 51ff17f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tespy/tools/analyses.py
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ def print_results(

if busses:
df = self.bus_data.copy()
df = df.loc[:, df.columns != 'group']
df = df.loc[:, (df.columns != 'group') & (df.columns != 'base')]
if sort_desc:
df.sort_values(by=['E_D'], ascending=False, inplace=True)

Expand Down

0 comments on commit 51ff17f

Please sign in to comment.