Skip to content

Commit

Permalink
Add white/black to playing card suit names.
Browse files Browse the repository at this point in the history
Makes it possible to differentiate black and white symbols.
  • Loading branch information
avian2 committed Jan 15, 2024
1 parent 22d2574 commit 626b5e8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions unidecode/x026.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@
'black bishop', # 0x5d
'black knight', # 0x5e
'black pawn', # 0x5f
'spades', # 0x60
'hearts', # 0x61
'diamonds', # 0x62
'clubs', # 0x63
'spades', # 0x64
'hearts', # 0x65
'diamonds', # 0x66
'clubs', # 0x67
'black spades', # 0x60
'white hearts', # 0x61
'white diamonds', # 0x62
'black clubs', # 0x63
'white spades', # 0x64
'black hearts', # 0x65
'black diamonds', # 0x66
'white clubs', # 0x67
'', # 0x68
'', # 0x69
'', # 0x6a
Expand Down

0 comments on commit 626b5e8

Please sign in to comment.