From d76be56628e5867bdef83ef4ccef52c4aaeb81c8 Mon Sep 17 00:00:00 2001 From: Talib Pierson <47838810+TalibPierson@users.noreply.github.com> Date: Tue, 1 Dec 2020 10:36:15 -0800 Subject: [PATCH] Syntax: "is not" -> "!=" --- graphspace_python/api/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphspace_python/api/client.py b/graphspace_python/api/client.py index ab74371..b12d265 100644 --- a/graphspace_python/api/client.py +++ b/graphspace_python/api/client.py @@ -71,7 +71,7 @@ def _add_instance_methods(self, instance_methods): instance of the bound method. """ for method in instance_methods: - if method[0][0] is not '_': + if method[0][0] != '_': self.__setattr__(method[0], method[1]) def set_api_host(self, host):