Return True if key is in a recognized format. False if not.
(key)
| 56 | |
| 57 | |
| 58 | def is_valid_key(key): |
| 59 | """Return True if key is in a recognized format. False if not.""" |
| 60 | for couple in keys: |
| 61 | if key in couple: |
| 62 | return True |
| 63 | return False |
| 64 | |
| 65 | |
| 66 | def get_key(accidentals=0): |
no outgoing calls
no test coverage detected