This simple example, should create an image with a single **red** circle ``` import matplotlib.pyplot as ploty from mpl_toolkits.mplot3d import Axes3D ploty.ion() fig = ploty.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(0,0,0,color='red') ``` But this is what I get  Is this a bug? Thanks.