client
client copied to clipboard
Fix the conditions to be more pythonic (python 3 syntax).
I've change condition on methods.py file from:
if cond == None
to
if cond is None
Which is more pythonic way to write code with.