mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Compat with Python 3.3+
This commit is contained in:
parent
d0e8f503b8
commit
b76b74e7a6
15 changed files with 110 additions and 96 deletions
pokedex/struct
|
@ -467,7 +467,7 @@ character_table = {
|
|||
|
||||
# And the reverse dict, used with str.translate()
|
||||
inverse_character_table = dict()
|
||||
for in_, out in character_table.iteritems():
|
||||
for in_, out in character_table.items():
|
||||
inverse_character_table[ord(out)] = in_
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue