Return the inversion of the triad in a string.
(tries)
| 1285 | |
| 1286 | |
| 1287 | def int_desc(tries): |
| 1288 | """Return the inversion of the triad in a string.""" |
| 1289 | if tries == 1: |
| 1290 | return "" |
| 1291 | elif tries == 2: |
| 1292 | return ", first inversion" |
| 1293 | elif tries == 3: |
| 1294 | return ", second inversion" |
| 1295 | elif tries == 4: |
| 1296 | return ", third inversion" |
| 1297 | |
| 1298 | |
| 1299 | def determine_polychords(chord, shorthand=False): |
no outgoing calls
no test coverage detected