When I use Python 3.10, the following line of code
|
if platform.system() is "Windows": |
produces the following warning message
SyntaxWarning: "is" with a literal. Did you mean "=="?
if platform.system() is "Windows":
Could this please be addressed?
Thanks!