From 1cf1de7861001d75fd9a5a668fffa22648b08af1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci-lite[bot]" <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 06:36:11 +0000 Subject: [PATCH] [pre-commit.ci lite] apply automatic fixes --- neqsim/thermo/thermoTools.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/neqsim/thermo/thermoTools.py b/neqsim/thermo/thermoTools.py index fbdc0f2..cc794e1 100644 --- a/neqsim/thermo/thermoTools.py +++ b/neqsim/thermo/thermoTools.py @@ -943,7 +943,7 @@ def bubp(testSystem): except: logger.error("error calculating bublepoint") return math.nan - + return testSystem.getPressure() @@ -954,7 +954,7 @@ def bubt(testSystem): except: logger.error("error calculating bublepoint") return math.nan - + return testSystem.getTemperature() @@ -965,7 +965,7 @@ def dewp(testSystem): except: logger.error("error could not calculate") return math.nan - + return testSystem.getPressure() @@ -976,7 +976,7 @@ def dewt(testSystem): except: logger.error("error could not calculate") return math.nan - + return testSystem.getTemperature() @@ -987,7 +987,7 @@ def waterdewt(testSystem): except: logger.error("error could not calculate") return math.nan - + return testSystem.getTemperature()