diff --git "a/data/3.python\351\253\230\351\230\266/3.\347\273\230\345\233\276\345\272\223Matplotlib/4.\351\243\216\346\240\274\345\222\214\346\240\267\345\274\217/style.py" "b/data/3.python\351\253\230\351\230\266/3.\347\273\230\345\233\276\345\272\223Matplotlib/4.\351\243\216\346\240\274\345\222\214\346\240\267\345\274\217/style.py" index f782769b3edcd62f11187ef0eeeef49bbc07d9f3..4cdc59dafd0b5d72e3dec29c1b476d3460ae5728 100644 --- "a/data/3.python\351\253\230\351\230\266/3.\347\273\230\345\233\276\345\272\223Matplotlib/4.\351\243\216\346\240\274\345\222\214\346\240\267\345\274\217/style.py" +++ "b/data/3.python\351\253\230\351\230\266/3.\347\273\230\345\233\276\345\272\223Matplotlib/4.\351\243\216\346\240\274\345\222\214\346\240\267\345\274\217/style.py" @@ -24,7 +24,7 @@ color_table = [ def random_hex_colors(): - index = randint(0, len(color_table)) + index = randint(0, len(color_table)-1) return color_table[index]['value']