Skip to content

Commit

Permalink
[pre-commit.ci lite] apply automatic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci-lite[bot] authored May 11, 2024
1 parent 61f1cd8 commit 1cf1de7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions neqsim/thermo/thermoTools.py
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ def bubp(testSystem):
except:
logger.error("error calculating bublepoint")
return math.nan

return testSystem.getPressure()


Expand All @@ -954,7 +954,7 @@ def bubt(testSystem):
except:
logger.error("error calculating bublepoint")
return math.nan

return testSystem.getTemperature()


Expand All @@ -965,7 +965,7 @@ def dewp(testSystem):
except:
logger.error("error could not calculate")
return math.nan

return testSystem.getPressure()


Expand All @@ -976,7 +976,7 @@ def dewt(testSystem):
except:
logger.error("error could not calculate")
return math.nan

return testSystem.getTemperature()


Expand All @@ -987,7 +987,7 @@ def waterdewt(testSystem):
except:
logger.error("error could not calculate")
return math.nan

return testSystem.getTemperature()


Expand Down

0 comments on commit 1cf1de7

Please sign in to comment.