From 3f9d5114524acbd5771bb9753c6b43f6595eafcc Mon Sep 17 00:00:00 2001 From: cclauss Date: Tue, 4 Sep 2018 01:31:29 +0200 Subject: [PATCH] from ._statics import TEMPERAMENTS __TEMPERAMENTS__ are referred to on line 97 but they are never imported. --- pytheory/tones.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytheory/tones.py b/pytheory/tones.py index b441f39..d48055a 100644 --- a/pytheory/tones.py +++ b/pytheory/tones.py @@ -1,4 +1,4 @@ -from ._statics import REFERENCE_A +from ._statics import REFERENCE_A, TEMPERAMENTS class Tone: # __slots__ = ("name", "octave", "system")