mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-29 10:21:54 -06:00
Fix wrong use of "is" and "is not" in Python if-statements
This commit is contained in:
parent
39e678ae81
commit
493f257e5e
@ -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:
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user