fixed casing

This commit is contained in:
Dionysus 2019-07-25 02:36:58 -04:00
parent f2506cd785
commit e9326b22d9
No known key found for this signature in database
GPG Key ID: 05114B46832BDBDB
1 changed files with 5 additions and 6 deletions

View File

@ -12,11 +12,10 @@ import functions
if len(sys.argv) != 2:
functions.print_help()
else:
sys.argv[1] = sys.argv[1].lower()
if sys.argv[1].startswith('--chord='):
chord = sys.argv[1][8:]
key = chord.split('_')[0]
type = chord[len(key)+1:]
key = chord.split('_')[0].upper()
type = chord[len(key)+1:].lower()
if key in constants.notes and type in constants.scales:
functions.print_chord(key, type)
else:
@ -25,13 +24,13 @@ else:
elif sys.argv[1] == '--chords':
functions.print_chords()
elif sys.argv[1] == '--circle':
functions.print_circle()
functions.print_circle_of_fifths()
elif sys.argv[1] == '--intervals':
functions.print_intervals()
elif sys.argv[1].startswith('--scale='):
scale = sys.argv[1][8:]
key = scale.split('_')[0]
type = scale[len(key)+1:]
key = scale.split('_')[0].upper()
type = scale[len(key)+1:].lower()
if key in constants.notes and type in constants.scales:
functions.print_scale(key, type)
else: