From d11c9303087c45f922dd98d966eae90f6fadbb13 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 22 Mar 2026 20:56:44 -0400 Subject: [PATCH] Fix key_explorer.py: borrowed_chords returns strings not Chords Co-Authored-By: Claude Opus 4.6 (1M context) --- examples/key_explorer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/key_explorer.py b/examples/key_explorer.py index 7e36693..6fb2b80 100644 --- a/examples/key_explorer.py +++ b/examples/key_explorer.py @@ -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()