Skip to content

Commit

Permalink
orient to columns instead
Browse files Browse the repository at this point in the history
  • Loading branch information
hjoaquim committed May 14, 2024
1 parent 45bfac2 commit 955d19c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/openbb_cli/controllers/base_platform_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def method(self, other_args: List[str], translator=translator):
print_rich_table(df=df, show_index=True, title=title)

elif isinstance(obbject, dict):
df = pd.DataFrame.from_dict(obbject, orient="index")
df = pd.DataFrame.from_dict(obbject, orient="columns")
print_rich_table(df=df, show_index=True, title=title)

elif not isinstance(obbject, OBBject):
Expand Down

0 comments on commit 955d19c

Please sign in to comment.