You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: