Capitalize visibility

This commit is contained in:
Ivan Habunek 2024-04-08 08:34:56 +02:00
parent 07beba8c68
commit 07ad41960f
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ def status_lines(status: Status) -> t.Generator[str, None, None]:
reply = f"↲ In reply to {yellow(in_reply_to_id)} " if in_reply_to_id else ""
boost = f"{blue(reblogged_by_acct)} boosted " if reblogged_by else ""
yield f"ID {yellow(status_id)} visibility: {status.visibility} {reply} {boost}"
yield f"ID {yellow(status_id)} Visibility: {status.visibility} {reply} {boost}"
def html_lines(html: str, width: int) -> t.Generator[str, None, None]: