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

@@ -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: