The seaborn stripplot has a function which allows hue. 
Using the example from https://stanford.edu/~mwaskom/software/seaborn/generated/seaborn.stripplot.html
import seaborn as sns
sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
ax = sns.stripplot(x=tips["total_bill"])
ax = sns.stripplot(x="sex", y="total_bill", hue="day", data=tips, jitter=True)
In this case, the legend is quite small, showing a different hue for each day. However, I would like to remove the legend.
Normally, one includes a parameter legend=False. However, for stripplot, this appears to output an attribute error: 
AttributeError: Unknown property legend
Can one remove the legend for stripplots? If so, how does one do this? 

 
     
    