Skip to content

Commit

Permalink
Make t the same as default detok
Browse files Browse the repository at this point in the history
  • Loading branch information
kg583 committed Nov 16, 2024
1 parent e396b92 commit 53d2500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tivars/types/tokenized.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ def __format__(self, format_spec: str) -> str:

try:
match spec:
case "":
case "" | "t":
string = self.decode(self.data, lang=lang)

case "a" | "t":
case "a":
string = self.decode(self.data, lang=lang, mode="accessible")

case _:
Expand Down

0 comments on commit 53d2500

Please sign in to comment.