-
-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Description
There is a typo/oversight in the if statement that confirms the colormap data is valid. It does not affect the output, but I noticed it when looking at the code and wanted to point it out.
if ( c[0] < 0 or c[0] > 15 or c[0] < 0 or c[1] > 15 or
This should be revised as follows:
if ( c[0] < 0 or c[0] > 15 or c[1] < 0 or c[1] > 15 or
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels