diff options
-rw-r--r-- | pokemontools/battle_animations.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pokemontools/battle_animations.py b/pokemontools/battle_animations.py index 678e9ce..ffc89e4 100644 --- a/pokemontools/battle_animations.py +++ b/pokemontools/battle_animations.py @@ -254,6 +254,9 @@ class BattleAnim: def battle_anim_label(i): + """ + Return a label matching the name of a battle animation by id. + """ if i in anims.keys(): base_label = 'BattleAnim_%s' % anims[i].title().replace('_','') else: |