Feature 10296 Pip Standardization
[osm/osmclient.git] / osmclient / sol005 / client.py
index 495c425..36062bf 100644 (file)
@@ -149,9 +149,9 @@ class Client(object):
 
     def set_default_params(self, **kwargs):
         host = kwargs.pop("host", None)
-        if host != None:
+        if host is not None:
             self._host = host
         port = kwargs.pop("port", None)
-        if port != None:
+        if port is not None:
             self._so_port = port
         self._http_client.set_query_admin(**kwargs)