Skip to content

Commit

Permalink
fix(pikaprint): add more extra printable characters
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Aug 26, 2024
1 parent 289f320 commit ccd3d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pikaur/pikaprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
BOLD_RESET: "Final" = "\033[0m"
COLOR_RESET: "Final" = "\033[0;0m"

PRINTABLE: "Final" = {"´", "‐", *printable} # noqa: RUF001
PRINTABLE: "Final" = {"´", "‐", "●", *printable} # noqa: RUF001


class TTYRestore:
Expand Down

0 comments on commit ccd3d1b

Please sign in to comment.