Skip to content

Commit

Permalink
Fixing wrong argument passing. (#832)
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 authored Jan 13, 2022
1 parent c4a3a36 commit a098b4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansys/mapdl/core/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ def to_dataframe(self, data=None, columns=None):
if not columns:
columns = self.get_columns()

return pd.DataFrame(data=data, columns=data)
return pd.DataFrame(data=data, columns=columns)


class BoundaryConditionsListingOutput(CommandListingOutput):
Expand Down

0 comments on commit a098b4f

Please sign in to comment.