diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 15:16:48 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-01 15:16:48 -0500 |
commit | 676f12f57307282416137a36ef87105f65bf1240 (patch) | |
tree | fe5c8eca87bc179b32cf26ef32749859d6506122 | |
parent | 58e8718616a4a3d8733c6760feb8184ff46592c1 (diff) |
fix spacing in get_pokemon_constant_by_id
-rw-r--r-- | pokemontools/crystal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/crystal.py b/pokemontools/crystal.py index ca7e9b8..3eed593 100644 --- a/pokemontools/crystal.py +++ b/pokemontools/crystal.py @@ -220,7 +220,7 @@ def clean_up_long_info(long_info): def get_pokemon_constant_by_id(id): if id == 0: - return None + return None else: return pokemon_constants.pokemon_constants[id] |