mandrewcito / signalrcore

SignalR Core python client
https://mandrewcito.github.io/signalrcore/
MIT License
115 stars 53 forks source link

use value compare rather than identity compare #24

Closed bmc-msft closed 4 years ago

bmc-msft commented 4 years ago

'is' and 'is not' refers to identity compare.

See: https://docs.python.org/3/reference/expressions.html#value-comparisons And: https://docs.python.org/3/reference/expressions.html#is-not

mandrewcito commented 4 years ago

You are right, thank you!.