google-deepmind / google-deepmind/pysc2
Colors.py Error fix
Open
- Dominant language
- Python
- Stars
- 8.3k
- Forks
- 1.2k
- PR merge metrics
- No merged PRs in 30d
Description
The error:
TypeError: Random.shuffle() takes 2 positional arguments but 3 were given
In the code of Colors.py:

was fixed by replacing it with:
def shuffled_hue(scale):
palette = list(smooth_hue_palette(scale))
random_keys = [random.random() for _ in palette]
palette = [x for _, x in sorted(zip(random_keys, palette))]
return numpy.array(palette)
Contributor guide
Assessment
This issue has not been assessed yet.