Fix wrong use of "is" and "is not" in Python if-statements

This commit is contained in:
Gaute Lindkvist 2021-01-12 11:09:03 +01:00
parent 39e678ae81
commit 493f257e5e
2 changed files with 3 additions and 3 deletions

View File

@ -111,7 +111,7 @@ def __generate_property_input_chunks(self, array, parameters):
index = -1
while index < len(array):
chunk = Properties_pb2.PropertyInputChunk()
if index is -1:
if index == -1:
chunk.params.CopyFrom(parameters)
index += 1
else:
@ -1244,7 +1244,7 @@ def __generate_nnc_property_input_chunks(self, array, parameters):
index = -1
while index < len(array):
chunk = NNCProperties_pb2.NNCValuesChunk()
if index is -1:
if index == -1:
chunk.params.CopyFrom(parameters)
index += 1
else:

View File

@ -81,7 +81,7 @@ class Instance:
port_env = os.environ.get('RESINSIGHT_GRPC_PORT')
if port_env:
port = int(port_env)
if launch_port is not -1:
if launch_port != -1:
port = launch_port
if not resinsight_executable: