Commit 37e270d
committed
Fix CI: Remove f-strings for Python 2.7 compatibility
- Replaced f-string formatting with string concatenation (Python 2.7 compatible)
- Fixed: f"Parameter '{param_name}' not found" → "Parameter '" + str(param_name) + "' not found"
- Fixed: f"Send {chr(65+i)}" → "Send " + chr(65+i)
- Removed external project references per request
This ensures compatibility with Ableton Live 11 (Python 2.7) and Live 12 (Python 3.11.6).1 parent 07d282d commit 37e270d
2 files changed
Lines changed: 3 additions & 25 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1628 | 1628 | | |
1629 | 1629 | | |
1630 | 1630 | | |
1631 | | - | |
| 1631 | + | |
1632 | 1632 | | |
1633 | 1633 | | |
1634 | 1634 | | |
| |||
1653 | 1653 | | |
1654 | 1654 | | |
1655 | 1655 | | |
1656 | | - | |
| 1656 | + | |
1657 | 1657 | | |
1658 | 1658 | | |
1659 | 1659 | | |
| |||
1846 | 1846 | | |
1847 | 1847 | | |
1848 | 1848 | | |
1849 | | - | |
| 1849 | + | |
1850 | 1850 | | |
1851 | 1851 | | |
1852 | 1852 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
277 | 277 | | |
278 | 278 | | |
279 | 279 | | |
280 | | - | |
281 | | - | |
282 | | - | |
283 | | - | |
284 | | - | |
285 | | - | |
286 | | - | |
287 | | - | |
288 | | - | |
289 | | - | |
290 | | - | |
291 | | - | |
292 | | - | |
293 | | - | |
294 | | - | |
295 | | - | |
296 | | - | |
297 | | - | |
298 | | - | |
299 | | - | |
300 | | - | |
301 | 280 | | |
302 | 281 | | |
303 | 282 | | |
| |||
316 | 295 | | |
317 | 296 | | |
318 | 297 | | |
319 | | - | |
320 | 298 | | |
321 | 299 | | |
322 | 300 | | |
| |||
0 commit comments