dict already takes **kwargs... is this what you want? mystyle = dict(linestyle="dotted", marker="s", color= (0.1,0.1,0.0), markersize=4)
All I did was remove the “**”. Brandt > On Sep 26, 2019, at 13:24, Mikhail V <[email protected]> wrote: > > mystyle = dict ** (linestyle="dotted", marker="s", color= (0.1,0.1,0.0), > markersize=4) _______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/OCMDIWSJYNRIHNV672QZX2OHFQ2FNI45/ Code of Conduct: http://python.org/psf/codeofconduct/
