diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-11-17 11:09:24 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-11-17 11:09:24 -0600 |
commit | af6b87ae494668ff32f6398bca0b5d5c746e0115 (patch) | |
tree | 4075221107b9f3a915ba4b1dff65742a481bacea | |
parent | 4a95f903601e328c5b007886714e564916c20957 (diff) |
fix syntax error in audio.py
-rw-r--r-- | pokemontools/audio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/audio.py b/pokemontools/audio.py index 1cce1fe..e783b8f 100644 --- a/pokemontools/audio.py +++ b/pokemontools/audio.py @@ -209,7 +209,7 @@ class Channel: for class_ in sound_classes: if class_.id == i: return class_ - if self.channel in [4. 8]: return Noise + if self.channel in [4, 8]: return Noise return Note |