mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix wrong use of "is" and "is not" in Python if-statements
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user