Fix key_explorer.py: borrowed_chords returns strings not Chords

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-22 20:56:44 -04:00
parent 19663ed6c5
commit d11c930308
+2 -2
View File
@@ -48,8 +48,8 @@ def explore_key(tonic, mode="major"):
borrowed = key.borrowed_chords
if borrowed:
print(f" Borrowed from {key.parallel}:")
for chord in borrowed[:4]:
print(f" {chord.identify()}")
for name in borrowed[:4]:
print(f" {name}")
print()