Skip to content

Commit b84876c

Browse files
committed
Add list-like dashes to position updates.
1 parent d4b1c1d commit b84876c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def _account_summary() -> str:
3232
positions_str = ""
3333
for sector, attributes in positions.items():
3434
positions_str += (
35-
f"{sector} is "
35+
f"- {sector} is "
3636
f"{'up $' if attributes['Unrealized Profit'] > 0 else 'down -$'}"
3737
f"{abs(attributes['Unrealized Profit']):,.2f} in total, with a market value of "
3838
f"${attributes['Market Value']:,.2f}.\n"

0 commit comments

Comments
 (0)